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