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