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