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