-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.59 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
58
59
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OddEven</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1 class="titleText">
Marbles,<br />
enjoy your game
</h1>
<div class="content">
<div class="player">
<input
placeholder="Enter Name"
type="text"
class="enterName p1Name"
/>
<input
placeholder="Number(1-20)"
class="number"
type="number"
name="Enter Number"
id="Player1"
min="1"
max="1
20"
/>
<h4 class="marbles p1Marbles">10</h4>
</div>
<h3>vs</h3>
<div class="player">
<input
placeholder="Enter Name"
type="text"
class="enterName p2Name"
/>
<input
placeholder="Number(1-20)"
class="number"
type="number"
name="Enter Number"
id="Player2"
min="1"
max="20"
/>
<h4 class="marbles p2Marbles">10</h4>
</div>
</div>
<button class="buttons rollBtn">RollMe</button>
<button class="buttons setName">Set Name</button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>