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