-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.76 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-80"/>
<meta name="author" content="Darin Joshua"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hand Cricket</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>HAND CRICKET</h1>
</header>
<div class="page">
<h2>Click On BAT or BOWL to Start the Game</h2>
<form action="index.html">
<input type="button" value="BAT" class="but" id="bat" onclick="user_main(1)" />
<input type="button" value="BOWL" class="but" id="bowl" onclick="user_main(0)"/>
</form>
</div>
<div class="score-board">
<div id="user-label" class="badge">user</div>
<div id="computer-label" class="badge">comp</div>
<span id="user-score">0</span>:<span id="comp-score">0</span>
</div>
<div class="result">
<p>One to Six Numbers, If you place the Same Number as the Computer then your OUT! Score more runs to WIN!!</p>
</div>
<div class="choices">
<div class="choice" id="O">
<img src="images/One.png" alt="One">
</div>
<div class="choice" id="T">
<img src="images/Two.png" alt="Two">
</div>
<div class="choice" id="Th">
<img src="images/Three.png" alt="Three">
</div>
<div class="choice" id="F">
<img src="images/Four.png" alt="Four">
</div>
<div class="choice" id="Fi">
<img src="images/Five.png" alt="Five">
</div>
<div class="choice" id="S">
<img src="images/Six.png" alt="Six">
</div>
</div>
<p id="action-msg">Make Your Move!!</p>
<script src="app.js" charset="utf-8"></script>
</body>
</html>