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