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