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