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