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