-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
82 lines (79 loc) · 2.43 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
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="images/letter-m.png" />
<link rel="stylesheet" href="css/style.min.css" />
<title>Memory Game</title>
</head>
<body>
<div class="game-container">
<div class="background-lines">
<div class="line-1"></div>
<div class="line-2"></div>
<div class="line-3"></div>
<div class="line-4"></div>
<div class="line-5"></div>
<div class="line-6"></div>
<div class="line-12"></div>
<div class="line-13"></div>
<div class="line-14"></div>
<div class="line-15"></div>
<div class="line-16"></div>
<div class="line-1"></div>
<div class="line-2"></div>
<div class="line-3"></div>
<div class="line-4"></div>
<div class="line-5"></div>
<div class="line-6"></div>
<div class="line-12"></div>
<div class="line-13"></div>
<div class="line-14"></div>
<div class="line-15"></div>
<div class="line-16"></div>
</div>
<div id="timer">
<div id="time">Timer <br />00:00</div>
</div>
<div id="grid"></div>
</div>
<div id="you-loose">
<div id="you-loose-wrapper">
<div id="title">
Too slow bitch....<br />Until next time.....
</div>
<button onclick="location.reload()">Try Again</button>
</div>
</div>
<div id="you-win">
<div id="you-win-wrapper">
<div id="title">Well you won...<br />Now what ?</div>
<div id="title">Well you won...<br />Now what to ?</div>
<div id="title">Well you won...<br />Now what do ?</div><div id="title">Well you won...<br />Now what ?</div>
<div id="title">Well you won...<br />Now whatit ?</div>
<button onclick="location.reload()">Try Again</button>
</div>
</div>
<div id="welcome-screen">
<div id="welcome-wrapper">
<div id="title">
<br>
I see, so hours of boredom has finally brought you here<br />You
dissapoint me son....<br /><br />GO get a life
</div>
<button onclick="play(6);">EASY</button>
<br>
<button onclick="play(10);">MEDIUM</button>
<br>
<button onclick="play(14);">HARD</button>
<br>
<p id="timeee">
(ps. you got 59 seconds to finish this. <br />And yes it's
possible I tested it.)
</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>