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