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