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