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