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