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