Use on the webTotal Use [ 6025 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/3473992cf023fdfd2e0be2b3536bcd99?family=Gold+Ingots+Outline" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/3473992cf023fdfd2e0be2b3536bcd99?family=Gold+Ingots+Outline);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Gold Ingots Outline";
src: url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.eot");
src: url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3473992cf023fdfd2e0be2b3536bcd99.svg#Gold Ingots Outline")format("svg");
}
2CSS rules to specify fonts
font-family: "Gold Ingots Outline";