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