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