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