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