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