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