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