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