-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CodersEggs</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
</script>
<script src="jquery-color/jquery.color.js"></script>
<script src="jquery.scrollTo/jquery.scrollTo.js"></script>
</head>
<body>
<div id="intro"></div>
<div id='logo'>
<img src='img/logo01.png' alt="" width="300" height="170"
style="position: relative; left: 500px;">
</div>
<div id="container"></div>
<div id="mainColor"></div>
<div class="blankSpace"></div>
<div id="instruction">
<span>Za każde kliknięcie zgodne ze wskazanym kolorem <br>zdobywasz 5 pkt, ale pomyłka to -5 pkt.</span>
</div>
<br>
<button id='start'>START</button>
<br><br>
<div id="timeCount">Pozostało czasu:
<div id="time"></div>
</div>
<br><br>
<div id="score">
Zdobyta ilość punktów:
<span id="finalScore"></span>
</div>
<br>
<button id='clear'>Nowa gra</button>
<script src="js/app.js"></script>
</body>
</html>