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