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