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