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