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