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