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