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