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