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