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