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