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