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