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