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