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