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