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