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