-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href = "styles.css">
<title>Odd-or-even</title>
</head>
<body>
<h1>
Welcome to Odd-or-even game
</h1>
<div id='instructions'>
<p>Instructions</p>
<p>Welcome to Odd or even game.</p>
<p>Instructions:</p>
<p> 1.You will have to toss with the computer</p>
<p> 2.Then choose bat or bowl if you won the toss</p>
<p> 3.Give the respective number between 0 and 6(Inclusive)</p>
<p> 4.If you are bowler and your number is equal to that of batsmen then the batsmen is out.(And vice-versa)</p>
<p> 5.After play 1 the players are swapped there positions and the new batsmen should chase the run set by the batsmen in play 1.</p>
<p> All the best :)</p>
</div>
<div id="tossform" >
<form action="toss.html">
<input type="submit" value="Lets toss" id="lets_toss">
</form>
</div>
</body>
</html>