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