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