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