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