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