-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathindex.html
File metadata and controls
58 lines (58 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Card Somthing Game</title>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet'>
<link href="http://fonts.googleapis.com/css?family=Orbitron:400,700" rel="stylesheet" type="text/css" >
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<header>
<h1>Card Somthing Game</h1>
</header>
<div id="timer">
Elapsed time: <span id="elapsed-time">00:00</span>
</div>
<section id="game">
<div id="cards">
<div class="card">
<div class="face front"></div>
<div class="face back"></div>
</div>
</div>
</section>
<section id="popup" class="hide">
<div id="popup-bg"></div>
<div id="popup-box">
<div class="ribbon hide">
<div class="ribbon-body">
<span>New Record</span>
</div>
<div class="triangle"></div>
</div>
<div id="popup-box-content">
<h1>You Won!</h1>
<p>Your Score:</p>
<p><span class='score'>13</span></p>
<p>
<small>
Last Score: <span class='last-score'>20</span><br>
Saved on: <span class='saved-time'>13/4/2011 15:15:15</span>
</small>
</p>
</div>
</div>
</section>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/memory-matching.js"></script>
</script>
<form id="target" action="http://localhost:8000/price">
<input type="text" value="socks" name="item">
<input type="submit" value="Go">
</form>
<div id="other">
Trigger the handler
</div>
</body>
</html>