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