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