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