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