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