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