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