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