-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.27 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
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=620" />
<title>Magic Grid</title>
<link rel="stylesheet" href="css/application.css" type="text/css" />
<script type="text/javascript" src="lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery/jquery-ui-1.8.6.custom.min.js"></script>
<script type="text/javascript" src="js/state.js"></script>
<script type="text/javascript" src="js/random_generator.js"></script>
<script type="text/javascript" src="js/grid.js"></script>
<script type="text/javascript" src="js/util.js"></script>
</head>
<body>
<section id="wrapper">
<header class='title'>
<span>Magic Grid of ThoughtWorkers<span>
<a href='all.html' target='blank'>view all TWers</a>
</header>
<section id='status'>
<div class='current'>
<p id='life'></p>
<p id='score'>
<p id='result'></p>
</div>
<div class="info"></div>
</section>
<div class='time-status'>
<div id ='time'></div>
</div>
<section id='main'></section>
<footer>
<p>[email protected]</p>
</footer>
</section>
</body>
</html>