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