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