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