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