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