-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.86 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
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rock, Paper, Scissors</title>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" >
</head>
<body>
<section id="player1" class="player-section">
<h2>Human</h2>
<h3><img class="player" src="./assets/human.png" alt="human"></h3>
<h3 id="humanWins">Wins: 0</h3>
<button class="hidden" id="changeGame">Change Game?</button>
</section>
<section id="game" class="game-container">
<h1>Rock Paper Scissors</h1>
<h2 id="gameChoicePrompt" class="">Choose your game!</h2>
<h2 id="actionEncourage" class="hidden">Choose your fighter!</h2>
<h3 id="resultMsg" class="hidden">Result</h3>
<div id="battleView" class="hidden"></div>
<div class="choices-styling">
<article id="vanilla" class="game-choice">
<h3>Classic</h3>
<p>rock > scissors</p>
<p>scissors > paper</p>
<p>paper > rock</p>
</article>
<article id="spicy" class="game-choice">
<h3>Hard Mode</h3>
<p>rock > scissors & lizard</p>
<p>scissors > paper & lizard</p>
<p>paper > rock & alien</p>
<p>lizard > paper & alien</p>
<p>alien > scissors & rock</p>
</article>
</div>
<article class="choices-container">
</article>
</section>
<section id="player2" class="player-section">
<h2>Computer</h2>
<h3>
<img class="player" src="./assets/robot.png" alt="robot">
</h3>
<h3 id="cpuWins">Wins: 0</h3>
</section>
<script src="player.js"></script>
<script src="game.js"></script>
<script src="main.js"></script>
</body>
</html>