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