-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.22 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>
<head>
<title>Rock paper scissor 2</title>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
</head>
<body>
<div class="container">
<div id="heading">Rock Paper Scissors!</div>
<div id="player">
<h3 id="playerHeading">Player: 0</h3>
<form>
<input type="radio" name="choice" value="Rock" id="Rock">
<label for="Rock">Rock</label>
<br>
<input type="radio" name="choice" value="Paper" id="Paper">
<label for="Paper">Paper</label>
<br>
<input type="radio" name="choice" value="Scissor" id="Scissor">
<label for="Scissor">Scissor</label>
<br>
<button type="button" >Play</button>
</form>
</div>
<div id="computer">
<h3 id="computerHeading">Computer: 0</h3>
<div id="computerChoice">Hi</div>
</div>
<div id="result">Result</div>
</div>
</body>
<script src="script.js" type="text/javascript"></script>
</html>