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