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