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