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