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