-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (37 loc) · 1.31 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
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Rock Paper Scissors Game</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<h1><span id="rock">Rock. </span><span id="paper">Paper. </span><span id="scissors">Scissors.</span></h1>
</header>
<div id="board-label">Score</div>
<div class="score-board">
<div id="user-label" class="badge">You</div>
<div id="cpu-label" class="badge">CPU</div>
<span id="user-score">0</span>:<span id="cpu-score">0</span>
</div>
<p id="action-message">Make your move.</p>
<div class="choices">
<div class="choice" id="r">
<img src="images/rock.png" alt="Rock" height="100%" width="100%">
</div>
<div class="choice" id="p">
<img src="images/paper.png" alt="Paper" height="100%" width="100%">
</div>
<div class="choice" id="s">
<img src="images/scissors.png" alt="Scissors" height="100%" width="100%">
</div>
</div><br>
<div class="result">
<p></p>
</div>
<br><br>
<!-- <a href="https://emojipedia.org">*here's the images used for the hands ></a> -->
<!-- <a href="https://www.youtube.com/watch?v=JOpedahoKoc">Paper Sound Effects</a> -->
<script src="scripts/app.js" charset="utf-8"></script>
</body>
</html>