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