-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.03 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>
<head>
<meta charset="utf-8">
<title>Rock-Paper-Scissors</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1> Round 1</h1>
<div> First to 5 wins!</div>
<div id=result> Let's get started</div>
</header>
<div id=scores>
<div id=playerContainer>
<div id=playerLabel> Player</div>
<div id=playerScore> 0 </div>
<img id = playerMove src="images/playericons/rock.png">
</div>
<div id=computerContainer>
<div id=computerLabel> Computer </div>
<div id=computerScore> 0 </div>
<img id = computerMove src="images/computericons/rock.png">
</div>
</div>
<div id=controls>
<input type="image" src= "images/playericons/rock.png" id=rockButton>
<input type="image" src= "images/playericons/paper.png" id=paperButton>
<input type="image" src= "images/playericons/scissors.png" id=scissorsButton>
</div>
</body>
</html>