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