-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 898 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (35 loc) · 898 Bytes
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>
<title>Rock Paper Scissor</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Rock Paper Scissor</h1>
</header>
<div class="scoreBoard">
<div id="user-label" class="badge">user</div>
<div id="computer-label" class="badge">computer</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="./images/rock.png" alt="Rock">
</div>
<div class="choice" id="paper">
<img src="./images/paper.png" alt="Paper">
</div>
<div class="choice" id="scissor">
<img src="./images/scissor.png" alt="Scissor">
</div>
</div>
<div id="actionMessage">
<p>Make Your Move</p>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>