-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<head>
<title>Cricket Game</title>
</head>
<body>
<h1>Bat Ball Stump Game</h1>
<button class="choicebutton" onclick="
UserChoice='Bat';
ComputerChoice_Generate()
getresult(UserChoice,computerChoice)
showresult(UserChoice,computerChoice,result)
"><img src="images/bat.png" alt="" class="choiceimage"></button>
<button class="choicebutton" onclick="
UserChoice='Ball';
ComputerChoice_Generate()
getresult(UserChoice ,computerChoice)
showresult(UserChoice,computerChoice,result)
"><img src="images/ball.png" alt="" class="choiceimage"></button>
<button class="choicebutton" onclick="
UserChoice='Stump';
ComputerChoice_Generate()
getresult(UserChoice ,computerChoice)
showresult(UserChoice,computerChoice,result)
"><img src="images/stump.png" alt=""class="choiceimage"></button>
<h3 id="user_move"> </h3>
<h3 id="computer_move"> </h3>
<h3 id="result"> </h3>
<h3 id="score"> </h3>
<script src="index.js"></script>
</body>
</html>