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