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