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