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