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