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