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