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