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