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