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