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