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