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