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