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