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