-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Rock, Paper, Scissors</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>Rock, Paper, Scissors</h1>
</header>
<section>
<p class="scoreBoard">
Player Score: <span class="score player">0</span>,
Computer Score: <span class="score computer">0</span>
</p>
<div class="buttonContainer">
<button data-selection="rock">
<img src="images/iconfinder_hand-rock-o_1608372.png">Rock
</button>
<button data-selection="paper">
<img src="images/iconfinder_hand-stop-o_1608369.png">Paper
</button>
<button data-selection="scissors">
<img src="images/iconfinder_hand-peace-o_1608374.png">Scissors
</button>
</div>
<div class="results">
<p class="roundMessage"></p>
<p class="gameMessage"></p>
</div>
</section>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>