-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 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
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1">
<link rel='stylesheet' type='text/css' href='circlething.css?v=0.12' />
<title>circlething</title>
<link id="randomfavicon" rel="shortcut icon" href="red.png" />
<script type='text/javascript' src='circlething.js?v=0.12'></script>
</head>
<body>
<div id="circlething">
<div class="container">
<!-- place holder for game: -->
<div id="gameboard" />
</div>
<div class="score">
<h2 style="display: inline">
<span id="score" class="orange">5</span>
</h2>
<span style="display: inline">
<span id="scorepreview"> (+<span id="nextscore">5</span>)</span>
</span>
<h3>
<span id="newhighest" class="orange"> new high score!</span>
<span id="highest" class="yellow">high score <span id="highscore">55</span></span>
</h3>
</div>
<h1>
<!-- The heading is intentionally one line with no spaces -->
<span class="random">Circle</span><span class="random">thing</span><span class="random">.</span>
</h1>
<p id="debug" style="display: none"></p>
</div>
</body>
</html>