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