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