Advertisement
Guest User

HTML Snowflake Fractal

a guest
Dec 27th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.40 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <script type="text/javascript" src="fractal.js"></script>
  4.   </head>
  5.  
  6.   <body onload="run('canvas', 'next', 'restart')">
  7.     <canvas id="canvas" width=500 height=500>
  8.       Your browser does not support the &lt;canvas&gt; element
  9.     </canvas>
  10.  
  11.     <input id="next" type="button" value="Next iteration" />
  12.     <input id="restart" type="button" value="Restart" />
  13.   </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement