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