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