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