-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (114 loc) · 5.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css" >
<link href="https://fonts.googleapis.com/css2?family=DynaPuff:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>Rock, Paper, Scissors</title>
</head>
<body>
<section class="panel side-panel">
<p class="side-panel-icon player1-icon">
<!-- Player 1 Icon Goes Here -->
</p>
<h2 class="side-panel-header player1-name">
<!-- Player 1 Name Goes Here -->
</h2>
<h3 class="wins-label hidden">Wins:
<span class="player1-wins">
<!-- Num Player 1 Wins Goes Here -->
</span>
</h3>
<button class="classic-button classic-game-button hidden">Change Game?</button>
<button class="wizard-button wizard-game-button hidden">Change Game?</button>
</section>
<main class="panel">
<h1>Rock, Paper, Scissors</h1>
<form>
<div class="name-input">
<label for="user-name">Your Name:</label>
<input type="text" name="user-name">
</div>
<div class="icon-input">
<label for="user-icon">Choose an Icon:</label>
<select name="user-icon">
<option value="😄">😄</option>
<option value="🐸">🐸</option>
<option value="☀️">☀️</option>
<option value="🐳">🐳</option>
<option value="🌸">🌸</option>
</select>
</div>
<div class="login-button-container">
<button type="button" class="login-button">Let's Play!</button>
</div>
</form>
<div class="view choose-game-view hidden">
<h2 class="view-header">Choose Your Game!</h2>
<div class="game-boxes-container">
<section class="game-box classic-box classic">
<h3 class="classic box-header">Classic</h3>
<ul class="classic">
<li class="classic">🪨 rock smashes scissors ✂️</li>
<li class="classic">✂️ scissors cut paper 📄</li>
<li class="classic">📄 paper covers rock 🪨</li>
</ul>
</section>
<section class="game-box wizard-box wizard">
<h3 class="wizard box-header">Wizard Duel</h3>
<ul class="wizard">
<li class="wizard">⚡️ Harry beats 🐍 Voldemort & 👱🏻♂️ Malfoy </li>
<li class="wizard">🧙🏻♂️ Dumbledore beats ⚡️ Harry & 🐍 Voldemort</li>
<li class="wizard">🧪 Snape beats 🧙🏻♂️ Dumbledore & ⚡️ Harry</li>
<li class="wizard">🐍 Voldemort beats 🧪 Snape & 👱🏻♂️ Malfoy</li>
<li class="wizard">👱🏻♂️ Malfoy beats 🧙🏻♂️ Dumbledore & 🧪 Snape </li>
</ul>
</section>
</div>
</div>
<div class="view choose-fighter-classic hidden">
<h2 class="view-header">Choose Your Fighter!</h2>
<section class="icons-container classic-icons">
<img src="assets/happy-rocks.png" alt="a cartoon big and small rock sitting in a tuft of grass with happy smiling faces" class="classic-icon" id="rock">
<img src="assets/happy-paper.png" alt="a cartoon lined piece of paper with a happy smiling face" class="classic-icon" id="paper">
<img src="assets/happy-scissors.png" alt="a pair of cartoon scissors" class="classic-icon" id="scissors">
</section>
</div>
<div class="view choose-fighter-wizard hidden">
<h2 class="view-header">Choose Your Fighter!</h2>
<section class="icons-container wizard-icons">
<img src="assets/harry.png" alt="cartoon of Harry Potter" class="wizard-icon" id="harry">
<img src="assets/malfoy.png" alt="cartoon of Draco Malfoy" class="wizard-icon" id="malfoy">
<img src="assets/snape.png" alt="cartoon of Severus Snape" class="wizard-icon" id="snape">
<img src="assets/voldemort.png" alt="cartoon of Lord Voldemort" class="wizard-icon" id="voldemort">
<img src="assets/dumbledore.png" alt="cartoon of Albus Dumbledore" class="wizard-icon" id="dumbledore">
</section>
</div>
<div class="view result-view hidden">
<h2 class="view-header result">
<!-- Result Announcement Goes Here -->
</h2>
<section class="icons-container fighters">
<!-- Fighters' Icons Go Here-->
</section>
</div>
</main>
<section class="panel side-panel">
<p class="side-panel-icon player2-icon">
<!-- Player 2 Icon Goes Here -->
</p>
<h2 class="side-panel-header player2-name">
<!-- Player 2 Name Goes Here -->
</h2>
<h3 class="wins-label hidden">Wins:
<span class="player2-wins">
<!-- Num Player 2 Wins Goes Here -->
</span>
</h3>
<button class="classic-button classic-reset-button hidden">Reset Wins?</button>
<button class="wizard-button wizard-reset-button hidden">Reset Wins?</button>
</section>
<script src="./main.js"></script>
</body>
</html>