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