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