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