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