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