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