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