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