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