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