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