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