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