-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGame.html
41 lines (30 loc) · 1.23 KB
/
Game.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
<html>
<head>
<title>Java Script Project</title>
<link href="Style.css" rel="stylesheet" />
</head>
<body id="gameScreen">
<label id="nameText" class="userDataText">Name : </label>
<label id="userName" class="userData"></label>
<label id="scoreText" class="userDataText">Score : </label>
<label id="userScore" class="userData"></label>
<label id="lostEggText" class="userDataText">Lost : </label>
<label id="userLostEgg" class="userData"></label>
<label id="timeText" class="userDataText">Time : </label>
<label id="userTime" class="userData"></label>
<br>
<label id="DateText" class="userDataText date">Last Date : </label>
<label id="userDate" class="userData"></label>
<div>
<script id="finishGame"></script>
<lottie-player class="finishGame" background="transparent" speed="0.8" style="width: 40%; height: 80%;" autoplay></lottie-player>
<button id="Restart">Restart</button>
<audio id="finishGameAudio" autoplay></audio>
</div>
<audio id="eggAudio" autoplay></audio>
<script src="ClassShapes.js"></script>
<script src="ClassBasket.js"></script>
<script src="ClassEgg.js"></script>
<script src="Game.js"></script>
</body>
</html>