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