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