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