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