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