-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (54 loc) · 1.71 KB
/
index.html
File metadata and controls
65 lines (54 loc) · 1.71 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rock Paper Scissors Game</title>
<link rel="icon" type="image/png" href="images/favicon_atom_symbol.svg.png">
<!--favicon added -->
<link rel="stylesheet" href="css/style.css">
<script src="js/app.js" charset="utf-8"></script>
</head>
<body>
<header>
<h1>Rock Paper Scissors Lizard Spock</h1>
<h2>The Fan Art Game!</h2>
<img src="images/logo.png" alt="logo">
</header>
<main>
<section>
<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>Press play to start</p>
</div>
<audio id="audio" src="audio/sheldonGame.mp3"></audio>
<button id="play"><span>Play</span></button>
<audio id="audio-instructions" src="audio/instructions.mp3"></audio>
<button id="play-instructions">Instructions</button>
<button id="reset"><span>Reset</span></button>
<div class="choices">
<div class="choice">
<img src="images/rock.svg" id="r">
</div>
<div class="choice">
<img src="images/paper.svg" id="p">
</div>
<div class="choice">
<img src="images/scissors.svg" id="s">
</div>
<div class="choice">
<img src="images/lizard.svg" id="l">
</div>
<div class="choice">
<img src="images/spock.svg" id="sp">
</div>
<p id="action-message">Make your choice</p>
</div>
</section>
</main>
</body>
</html>