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