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