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