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