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