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