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