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