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