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