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