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