Use on the webTotal Use [ 3435 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e1e5be445f3b4fe6682d37a1136e5a68?family=Gold+Ingots+Leftalic" 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/e1e5be445f3b4fe6682d37a1136e5a68?family=Gold+Ingots+Leftalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Gold Ingots Leftalic";
src: url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.eot");
src: url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e1e5be445f3b4fe6682d37a1136e5a68.svg#Gold Ingots Leftalic")format("svg");
}
2CSS rules to specify fonts
font-family: "Gold Ingots Leftalic";