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