<script>
 // Set the number of snowflakes (more than 30 - 40 not recommended)
 var snowmax = 100;
 // Set the colors for the snow. Add as many colors as you like ("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff")
 var snowcolor = ["#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff"];
 // Set the fonts, that create the snowflakes. Add as many fonts as you like("Times","Arial","Times","Verdana")
 var snowtype = ['monospace'];
 // Set the letter that creates your snowflake (recommended: * )
 var snowletter = "*";
 // Set the speed of sinking (recommended values range from 0.3 to 2)
 var sinkspeed = 0.5;
 // Set the maximum-size of your snowflakes
 var snowmaxsize = 10;
 // Set the minimal-size of your snowflakes
 var snowminsize = 20;
 // Set the snowing-zone
 // Set 1 for all-over-snowing, set 2 for left-side-snowing
 // Set 3 for center-snowing, set 4 for right-side-snowing
 var snowingzone = 1;
</script>
<script src="./assets/js/snowflakes.js"></script>