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