-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.4 KB
/
Copy pathindex.html
File metadata and controls
40 lines (40 loc) · 1.4 KB
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
<html>
<head>
<title>WhirlWare</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link href="jquery.mobile.css" rel="stylesheet" type="text/css" />
<script src="jquery-1.6.4.min.js" charset="utf-8"></script>
<script src="jquery.mobile.js" charset="utf-8"></script>
<script src="jquery.stopwatch.js" charset="utf-8"></script>
</head>
<body>
<div data-role="page" id="page1">
<div data-role="header" data-theme="e" data-content-theme="e">
<h1>MemoryS</h1>
</div>
<div data-role="content">
<div class="brain"><img src="images/brain.png" height="200" width="200"/></div>
<p><a href="#page2" id="reset" data-role="button" data-theme="e">Start!</a></p>
</div>
<div data-role="footer" data-theme="e" data-content-theme="e">
<h4>Developed by Vladislav Gasan</h4>
</div>
</div>
<div data-role="page" id="page2">
<div data-role="header" data-theme="e" data-content-theme="e">
<h1>MemoryS</h1>
</div>
<div data-role="content">
<div class="memo">
<div id="memory"></div>
<div id="counter" class="count">00:00:00</div>
<button id="reset" data-role="button" data-theme="e">New game</button>
<script type="text/javascript" src="memore.js"></script>
</div>
</div>
<div data-role="footer" data-theme="e" data-content-theme="e">
<h4>Developed by Vladislav Gasan</h4>
</div>
</div>
</body>
</html>