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