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