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