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