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