-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissors</title>
<script src="script.js" defer></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="contentWrapper">
<h1>Welcome To Rock Paper Scissors!!</h1>
<h2>Choose your throw:</h2>
<div id="throwContainer">
<div class="throwOption">
<p>Rock</p>
<input type="checkbox" name="Rock" id="Rock">
</div>
<div class="throwOption">
<p>Paper</p>
<input type="checkbox" name="Paper" id="Paper">
</div>
<div class="throwOption">
<p>Scissors</p>
<input type="checkbox" name="Scissors" id="Scissors">
</div>
</div>
<br>
<button id="playButton">PLAY!</button>
<hr>
<p id="ResultText"></p>
</div>
</body>
</html>