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