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