-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 965 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
<!DOCTYPE html>
<html>
<head>
<title>Toss the Coin</title>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="assignment.css">
<script defer src="assignment.js"></script>
</head>
<body>
<div id="user">
<h3>User Choice</h3>
<input type="radio" name="user-choice" value="head">Head</input><br />
<input type="radio" name="user-choice" value="reverse" checked>Reverse</input>
<h4>Result</h4>
<p id="result">Guess and throw!</p>
</div>
<div id="throw">
<p>
<img id="coin-image" src="reverse.png" alt="Coin flip result" />
</p>
<button id="throw-button">Throw</button>
</div>
<div id="stats">
<h3>Statistics</h3>
<h4>Amount of wins</h4>
<p id="win-count"></p>
<h4>Result history</h4>
<p id="result-history"></p>
<h4>Amount of head</h4>
<p id="head-count"></p>
<h4>Amount of reverse</h4>
<p id="reverse-count"></p>
</div>
</body>
</html>