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