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