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