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