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