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