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