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