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