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