-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissor</title>
<link rel="stylesheet" href="style.css" type="text/css"></link>
</head>
<body>
<header>
<h1>Stone Paper Scissor</h1>
</header>
<div class="score-board">
<div id="user-label" class="badge">user</div>
<div id="computer-label" class="badge">comp</div>
<span id="user-score">0</span> : <span id="computer-score">0</span>
</div>
<div class="result">
<p>Paper covers rock. You win!</p>
</div>
<div class="choices">
<div class="choice" id="rock">
<img src="https://img.icons8.com/color/48/000000/hand-rock.png" alt="rock"/>
</div>
<div class="choice" id="paper">
<img src="https://img.icons8.com/color/48/000000/hand.png" alt="paper"/>
</div>
<div class="choice" id="scissors">
<img src="https://img.icons8.com/color/48/000000/hand-scissors--v1.png" alt="scissor"/>
</div>
<p id="action-message">Make your move</p>
</div>
<script src="app.js" type="text/javascript"> </script>
</body>
</html>