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