-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·80 lines (76 loc) · 2.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta name="googlebot" content="noarchive">
<meta name="Revisit-After" content="1 days">
<meta name="robots" content="index,follow">
<meta name="Author" content="Sercan Eraslan, info@sercaneraslan.com">
<meta name="Generator" Content="Sercan Eraslan"/>
<meta name="Designer" Content="Sercan Eraslan"/>
<meta name="Copyright" Content="2015"/>
<meta name="Description" content="Genius - The Mind Game"/>
<meta name="Keywords" content="Genius, JavaScript, Game, Sercan Eraslan, Sercan, Eraslan, Front-End, Developer"/>
<title>Genius - The Mind Game</title>
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/app.css" />
<link rel="stylesheet" href="styles/selightbox.css" />
<link rel="shortcut icon" href="images/favicon.png" />
<script src="js/jquery.js"></script>
<script src="js/selightbox.js"></script>
<script src="js/app.js"></script>
<script src="js/genius.js"></script>
</head>
<body>
<header>
<h1>Genius</h1>
<ul>
<li class="time">Time : <span>0</span> s</li>
<li class="score">Score : <span></span></li>
<li class="level">Level : <span></span></li>
</ul>
</header>
<section>
<section>
<article>
<h2>Are you a Genius?</h2>
<button id="start">Start</button>
</article>
<!-- Intro -->
<ul></ul>
<!-- Zones -->
</section>
<div id="lightBoxLose" class="lb">
<div>
<h3>Wrong Box!</h3>
<div id="lbContent">
<p class="score">You click the wrong box. Your score is <span>0</span>.</p>
<button class="play-again">Play Again</button>
</div>
</div>
</div>
<div id="lightTimeOver" class="lb">
<div>
<h3>Time is Up!</h3>
<div id="lbContent">
<p>Time is up, sorry.</p>
<button class="play-again">Play Again</button>
</div>
</div>
</div>
<div id="lightBoxWin" class="lb">
<div>
<h3>Congratulations!</h3>
<div id="lbContent">
<p>You are a Genius :)</p>
<button class="play-again">Play Again</button>
</div>
</div>
</div>
<!-- LightBoxes -->
</section>
<footer></footer>
</body>
</html>