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