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