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