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