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