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