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