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