-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.29 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
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock-papper-scissors</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="panel">
<button >Rock</button>
<button >Paper</button>
<button >Scissors</button>
</div>
<div class="panel">
<div id="score">
Good Luck!!!
</div>
</div>
<div class="panel">
<table id="myTable">
<tr>
<th>Round</th>
<th>1st</th>
<th>2nd</th>
<th>3er</th>
<th>4th</th>
<th>5th</th>
</tr>
<tr id="user">
<th>User</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr id="machine">
<th>Machine</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</table>
</div>
<div class="panel">
<button id="reset">Play again</button>
</div>
</body>
<script src ="scripts.js"></script>
</html>