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