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