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