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