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