-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 loc) · 1.58 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
<!--index.html-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fruits Game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<div id="container">
<div id="score">
Score: <span id="scorevalue" class="scoreValue">0</span>
</div>
<div id="trialsLeft">
</div>
<div id="correct">
Correct
</div>
<div id="wrong">
Try again
</div>
<div id="fruitsContainer">
<img id="fruit1" class="fruit">
</div>
<div id="instruction">
Catch Fruits
</div>
<div id="startreset">
Start Game
</div>
<div id="gameOver">
</div>
</div>
<audio id="slicesound">
<source src="audio/slicefruit.mp3"></source>
<source src="audio/slicefruit.ogg"></source>
</audio>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js">
</script>
<script src="script.js"></script>
</body>
</html>