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