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