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