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