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