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