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