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