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