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