-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (66 loc) · 1.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Rock, Paper, Scissors</title>
<link rel="icon" href="assets/paper.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2 class="round">ROUND 1</h2>
<div class="scores">
<div class="player-wins">
<h2>WIN</h2>
<p>0</p>
</div>
<div class="ties">
<h2>TIES</h2>
<p>0</p>
</div>
<div class="computer-wins">
<h2>WIN</h2>
<p>0</p>
</div>
</div>
<div class="hands">
<img class="player-hand" src="./assets/rock.png" alt="" />
<table>
<tbody>
<tr id="rowh">
<th></th>
<th>ROUNDS</th>
<th></th>
</tr>
<tr id="row0">
<td id="player0">-</td>
<td id="round0">-</td>
<td id="computer0">-</td>
</tr>
<tr id="row1">
<td id="player1">-</td>
<td id="round1">-</td>
<td id="computer1">-</td>
</tr>
<tr id="row2">
<td id="player2">-</td>
<td id="round2">-</td>
<td id="computer2">-</td>
</tr>
</tbody>
</table>
<img class="computer-hand" src="./assets/rock.png" alt="" />
</div>
<div class="moves">
<div class="rock">
<p>🗿</p>
</div>
<div class="paper">
<p>📄</p>
</div>
<div class="scissors">
<p>✂️</p>
</div>
<script type="text/javascript" src="ai.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>