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