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