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