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