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