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