-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (47 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styling.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<title>Fruit Slice Game</title>
</head>
<body>
<div id="container">
<div id="score">
Score : <span id="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>
<div class="footer">
<div class="container">
<p>© Develop with Sajeeb.</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="jquery.js"></script>
</body>
</html>