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