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