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