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