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