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