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