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