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