Line 1: | Line 1: | ||
− | + | <!DOCTYPE html> | |
− | { | + | <html > |
− | < | + | <head> |
+ | <meta charset="UTF-8"> | ||
+ | <title>Particles - without mouse</title> | ||
+ | <style> | ||
+ | #canvas{ | ||
+ | background: white; | ||
+ | } | ||
+ | |||
+ | body{ | ||
+ | margin:0; | ||
+ | width: 100%; | ||
+ | height: 100%; | ||
+ | } | ||
+ | </style> | ||
+ | </head> | ||
+ | |||
<body> | <body> | ||
<canvas id="canvas">This browser doesn't support canvas</canvas> | <canvas id="canvas">This browser doesn't support canvas</canvas> | ||
− | + | ||
<script> | <script> | ||
(function() { | (function() { | ||
Line 107: | Line 122: | ||
} | } | ||
})(); | })(); | ||
+ | |||
</script> | </script> | ||
</body> | </body> | ||
</html> | </html> |
Revision as of 16:36, 31 October 2017
<!DOCTYPE html>