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