-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pulsate</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta content="no-cache, no-store, must-revalidate" http-equiv="Cache-Control"/>
<meta content="no-cache" http-equiv="Pragma"/>
<meta content="0" http-equiv="Expires"/>
<link rel="apple-touch-icon" href="./apple-touch-icon.png">
<link rel="icon" href="favicon.ico" type=“image/x-icon”>
<link rel="shortcut icon" href="./favicon.ico" type=“image/x-icon”>
<link rel="preload" href="./fonts/Open_Sans/static/OpenSans/OpenSans-Regular.ttf" as="font" type="font/ttf"
crossorigin>
<link href="./bin/main.css" rel="stylesheet"/>
<script src="./bin/main.js" type="module"></script>
</head>
<body>
<main class="invisible">
<canvas></canvas>
<p class="intro">click to create circles and let them collide!<br>[space to clear them all]</p>
</main>
<svg class="preloader" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<circle r="7" cx="10" cy="10" fill="none" stroke="#21242D" stroke-width="5"></circle>
<circle r="7" cx="10" cy="10" fill="none" stroke="#666D91" stroke-width="5" class="progress"></circle>
</svg>
</body>
</html>