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