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