-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfiller-panel.html
More file actions
61 lines (58 loc) · 1.46 KB
/
filler-panel.html
File metadata and controls
61 lines (58 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/ico" href="./favicon.ico" />
<title>TVShowQuiz</title>
<link
rel="stylesheet"
href="css/style.css"
as="style"
onload="this.rel='stylesheet'"
/>
<link
rel="stylesheet"
href="css/fillerstyle.css"
as="style"
onload="this.rel='stylesheet'"
/>
</head>
<body>
<div class="container">
<div class="photo">
<img
class="Breaking-Bad"
src="img/Breaking-Bad.png"
alt="Breaking Bad"
/>
<img
class="GameOfThrone"
src="img/Daenerys_Dragonpit.jpg.png"
alt="Game of Thrones"
/>
<img
class="RickAndMorty"
src="img/toxic-rick-energy-drink.png"
alt="Rick and Morty"
/>
</div>
<div class="input-box">
<h2>
YOU'VE CHOSEN <br />
<span id="title">GAME OF THRONE</span>
</h2>
<label class="name">
<input id="username" type="text" required />
<span class="placeholder">Enter Your Name</span>
</label>
<a href="quiz-panel.html" class="a-box">
<button id="button" class="btn2">
PLAY
</button>
</a>
</div>
</div>
<script defer src="index.js"></script>
</body>
</html>