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