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