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