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