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