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