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