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