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