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