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