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