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