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