-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathindex.html
40 lines (40 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Penny Flip Game</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<main>
<H1>Penny Flip Game</H1>
<div>
<div>Penny Image Display, Button Controls, and Status Message</div>
<hr>
<div>
<h2>Scoreboard</h2>
<table>
<thead>
<tr>
<th>Number of Heads</th>
<th>Percentage Heads</th>
<th>Number of Tails</th>
<th>Percentage Tails</th>
</tr>
</thead>
<tbody>
<tr>
<td id="heads">0</td>
<td id="heads-percent">0%</td>
<td id="tails">0</td>
<td id="tails-percent">0%</td>
</tr>
</tbody>
</table>
</div>
</div>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>