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