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