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