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