-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.56 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
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Rock Paper Scissors</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1> Rock Paper Scissors </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="tie-score">0</span> : <span id="computer-score">0</span>
</div>
<div class="result">
<p>Ready when you are!</p>
</div>
<div class="choices">
<div class="choice" id="r" >
<img id="rockimage" src="icons/rock-icon.png" alt="Rock image">
</div>
<div class="choice" id="s">
<img id="scissorsimage"src="icons/scissors-icon.png" alt="Scissors image">
</div>
<div class="choice" id="p">
<img id="paperimage" src="icons/paper-icon.png" alt="Paper image">
</div>
</div>
<p id="action-message"> Make your move.</p>
<script src="script.js"></script>
<div class="link">
<a class="link"href="https://icons8.com/icon/17664/hand-scissors">Hand Scissors icon by Icons8</a><br>
<a class="link"href="https://icons8.com/icon/26333/rock">Rock icon by Icons8</a><br>
<a class="link"href="https://icons8.com/icon/Oyd5aaeUvTBi/hand">Hand icon by Icons8</a>
</div>
<div class="link">
<p id="copyright"> Copyright Gregory Melendez 2021 </p>
</div>
</body>
</html>