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