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