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