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