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