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