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