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