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