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