-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.17 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">
<title> Virtual Rock Paper Scissors! </title>
<link rel = "stylesheet" href = "styles.css">
<body>
<header>
<h1> Virtual Rock Paper Scissors!</h1>
</header>
<div class="score-board">
<div id = "user-label" class = "badge">You</div>
<div id= "computer-label" class = "badge">Enemy</div>
<span id = "user-score">0</span>:<span id = "computer-score">0</span>
</div>
<div class = "result">
<p> Paper beats Rock. You have won this round.</p>
</div>
<div class = "row">
<div class = "column" id = "r">
<img src = "images/rock.PNG" alt = "rock">
</div>
<div class = "column" id = "p">
<img src= "images/paper.PNG" alt ="paper">
</div>
<div class = "column" id = "s">
<img src = "images/scissors.PNG" alt = "scissors">
</div>
</div>
<h1 id = "action-message"> Choose your next move! </h1>
<script src = "app.js" charset = "utf-8"></script>
</body>
</html>