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