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