-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·53 lines (35 loc) · 948 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Parchment, Stone, or Blade?</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>Rock, Paper, or Scissors?</h1>
<p>A steam-powered bot has challenged you to a game. <strong>Rock</strong> beats <strong>scissors</strong>, <strong>scissors</strong> beats <strong>paper</strong>, and <strong>paper</strong> beats <strong>rock</strong>.</p>
<div class="scoreboard">
<h2>Scoreboard</h2>
<table>
<tbody>
<tr>
<td id="humanScore">0</td>
<td id="computerScore">0</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>You</th>
<th>Bot</th>
</tr>
</tfoot>
</table>
</div>
<h2>Choose Wisely</h2>
<button id="rock">Rock</button>
<button id="paper">Paper</button>
<button id="scissors">Scissors</button>
<div id="status"></div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>