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