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