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