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