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