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