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