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