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