forked from turingschool-examples/webpack-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
143 lines (139 loc) · 4.4 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Devin and Rachael's JEOPARDY</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<section class="intro-page">
<h1 class="jeopardy-logo">JEOPARDY</h1>
<section class="welcome-page">
<section class="player-intro">
<img class="intro-img" src="/images/player1.svg">
<br>
<label for="player1">PLAYER ONE</label>
<br>
<input type="text" name="name1" id="player1" class="player one" placeholder="Player 1">
</section>
<section class="player-intro">
<img class="intro-img" src="/images/player2.svg">
<br>
<label for="player2">PLAYER TWO</label>
<br>
<input type="text" name="name1" id="player2" class="player two" placeholder="Player 2">
</section>
<section class="player-intro">
<img class="intro-img" src="/images/player3.svg">
<br>
<label for="player3">PLAYER THREE</label>
<br>
<input type="text" name="name1" id="player3" class="player three" placeholder="Player 3">
</section>
<br>
<button class="start-game">START</button>
</section>
</section>
<section class="game none">
<section class="question-box-area">
<section class="categories-container">
<div class="categories-box cat-0">
<h3>Topic 1</h3>
</div>
<div class="categories-box cat-1">
<h3>Topic 2</h3>
</div>
<div class="categories-box cat-2">
<h3>Topic 3</h3>
</div>
<div class="categories-box cat-3">
<h3>Topic 4</h3>
</div>
</section>
<section class="questions-container">
<div class="100-val 0 box">
<h2>100</h2>
</div>
<div class="200-val 0 box">
<h2>200</h2>
</div>
<div class="300-val 0 box">
<h2>300</h2>
</div>
<div class="400-val 0 box">
<h2>400</h2>
</div>
<div class="100-val 1 box">
<h2>100</h2>
</div>
<div class="200-val 1 box">
<h2>200</h2>
</div>
<div class="300-val 1 box">
<h2>300</h2>
</div>
<div class="400-val 1 box">
<h2>400</h2>
</div>
<div class="100-val 2 box">
<h2>100</h2>
</div>
<div class="200-val 2 box">
<h2>200</h2>
</div>
<div class="300-val 2 box">
<h2>300</h2>
</div>
<div class="400-val 2 box">
<h2>400</h2>
</div>
<div class="100-val 3 box">
<h2>100</h2>
</div>
<div class="200-val 3 box">
<h2>200</h2>
</div>
<div class="300-val 3 box">
<h2>300</h2>
</div>
<div class="400-val 3 box">
<h2>400</h2>
</div>
</section>
</section>
<section class="player-area">
<article id="player1" class="player-square 0">
<img class="player-img" src="/images/player1.svg">
<h4 id="player1-name-text" class="player-name reset">PLAYER 1 NAME</h4>
<h4 class="player-score" id="player-0-total">Score: 0 </h4>
</article>
<article id="player2" class="player-square 1">
<img class="player-img" src="/images/player2.svg">
<h4 id="player2-name-text" class="player-name">PLAYER 2 NAME</h4>
<h4 class="player-score" id="player-1-total">Score: 0 </h4>
</article>
<article id="player3" class="player-square 2">
<img class="player-img" src="/images/player3.svg">
<h4 id="player3-name-text" class="player-name">PLAYER 3 NAME</h4>
<h4 class="player-score" id="player-2-total">Score: 0 </h4>
</article>
</section>
<section class="bottom-button-area">
<div class="turn-area">
<button class="turn-button">Turns left: 12</button>
</div>
<div>
<button id ="reset-button" class="reset-bottom-button">RESET GAME</button>
</div>
<div class="current-round">
<button class="round-button">Current Round 1</button>
</div>
</section>
</section>
</section>
<section class="clue">
</section>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<!-- <script type="text/javascript" src="./src/index.js"></script> -->
</body>
</html>