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