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