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