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