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