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