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