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