-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdots.html
22 lines (15 loc) · 821 Bytes
/
dots.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html> <!-- manifest="cache.manifest" -->
<title>Dots!</title>
<meta name="aple-mobile-web-app-capable" content="yes" />
<meta name="viewport" ontent="user-scalable=no, width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<link rel="apple-touch-startup-image" href="./apple-touch-startup-image.png" />
<link rel="stylesheet" type="text/css" media="screen" href="dots.css">
<script type="text/javascript" src="dots.js"></script>
<body onclick="function(){return;}">
<canvas id="default_canvas" width="400" height="400">Your browser does not support the canvas element.</canvas>
</body>
</html>