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