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