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