-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
57 lines (57 loc) · 1.53 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
<!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" />
<meta
name="description"
content="Quiz game wrote in CodersCamp by future Frontend developrs"
/>
<meta
name="author"
content=" Aleksander Atamańczuk, Klaudia Gołębiowska, Anna Pastor"
/>
<title>TVShowQuiz</title>
<link
rel="stylesheet"
type="text/css"
href="node_modules/normalize.css/normalize.css"
/>
<link
rel="stylesheet"
href="css/mainstyle.css"
as="style"
onload="this.rel='stylesheet'"
/>
<link
rel="stylesheet"
href="css/style.css"
as="style"
onload="this.rel='stylesheet'"
/>
</head>
<body>
<section class="fog">
<div class="fog-container">
<div class="fog-img fog-img-first"></div>
<div class="fog-img fog-img-second"></div>
</div>
<div class="container">
<div class="title-container">
<div class="title__first">
<div class="drop1"><p>WOULD</p></div>
<div class="drop2"><p>YOU</p></div>
<div class="drop3"><p>DARE</p></div>
</div>
<div class="title__second">
<a href="intro-panel.html">
<h2 class="title__special ">TO PLAY</h2>
</a>
</div>
</div>
<script defer src="index.js"></script>
</div>
</section>
</body>
</html>