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