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