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