forked from HardCodeCoders/TVShowQuiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro-panel.html
49 lines (45 loc) · 1.29 KB
/
intro-panel.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
<!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/introstyle.css"
as="style"
onload="this.rel='stylesheet'"
/>
</head>
<body>
<div class="container">
<div class="photo">
<img class="Breaking-Bad" src="img/Breaking-Bad.png" />
<img class="GameOfThrone" src="img/Daenerys_Dragonpit.jpg.png" />
<img class="RickAndMorty" src="img/toxic-rick-energy-drink.png" />
</div>
<p class="title">
HOW WELL DO YOU KNOW <br />
YOUR FAVOURITE TV SHOW?
</p>
<div class="content">
<h3>
You have one minute to answer as<br />
many questions as possible. During<br />
the game on each question you need<br />
to select who is showed on the picture<br />
from avaiable options.<br />
</h3>
<h2>Now choose your TV show.</h2>
</div>
</div>
<script defer src="index.js"></script>
</body>
</html>