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