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