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