forked from AkhileshManda/MagicHacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
211 lines (170 loc) · 5.16 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> DevKnights</title>
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" href="./images/favion.jpg" type="image">
</head>
</embed>
<style>
body, html{
height:100%;
margin:0;
font-size:16px;
font-family:"Lato", sans-serif;
font-weight:400;
line-height:1.8em;
color:#666;
}
.pimg1, .pimg2, .pimg3, .pimg4{
position:relative;
opacity:1;
background-position:center;
background-size:cover;
background-repeat:no-repeat;
/*
fixed = parallax
scroll = normal
*/
background-attachment:fixed;
}
.pimg1{
background-image:url(images/home.jpg);
min-height:100%;
}
.pimg2{
background-image:url(images/home_pagehp.jpg);
min-height:400px;
;
}
.pimg3{
background-image:url(images/doctor_strange.jpg);
min-height:400px;
}
.pimg4{
background-image:url(images/last.jpg);
min-height: 100%;
;
}
.section{
text-align:center;
padding:50px 80px;
}
.section-light{
background-color:#f4f4f4;
color:#666;
}
.section-dark{
background-color:#282e34;
color:#ddd;
}
.ptext{
position:absolute;
top:50%;
width:100%;
text-align:center;
color:#000;
font-size:27px;
letter-spacing:8px;
text-transform:uppercase;
}
.ptext .border{
background-color:#111;
color:#fff;
padding:20px;
}
.ptext .border.trans{
background-color:transparent;
}
@media(max-width:568px){
.pimg1, .pimg2, .pimg3{
background-attachment:scroll;
}
}
.btn1{
background-color:transparent ;
color: #fff;
}
#btn2{
background-color:black ;
color: #fff;
}
a:link {
color: green;
text-decoration: none;
}
footer {
width: 100%;
color: rgb(0, 0, 0) !important;
background: #687FF2;
padding: 1em 0;
}
.Audio{
display:none;
}
</style>
<body>
<div class="pimg1">
<div class="ptext">
<span class="border">
Magic Knights
</span>
</div>
</div>
<section class="section section-light">
<h2>POTTERHEADS</h2>
<p>
We have followed Harry on his journey from when he came to know the truth about himself, the fact that he is a Wizard, through his life and experiences at Hogwarts and his final battle against Lord Voldemort at the Hogwarts Castle. He has grown into a steely lad, a lot different from where he started off, and so have you. You have gained knowledge about the world of “Harry Potter”. Let’s test the amount of knowledge you have gained throughout this journey
</p>
</section>
<div class="pimg2">
<div class="ptext">
<span class="border trans">
POTTERHEADS
<br>
<button type="button" name="button" id="btn" class="btn1"><a href="hpquiz.html"><p style="color:white">Let's Hop into Hogwarts</p></a></button>
</span>
</div>
</div>
<section class="section section-dark">
<h2>Doctor Strange Fans</h2>
<p>
Dr. Stephen Strange M.D., Ph.D., is the sorcerer and a Master of the Mystic Arts, originally a brilliant, although arrogant, surgeon. We watched how he underwent a transition from a successful and perfect Doctor to someone who lost everything as he meets with an accident and finally ends up at Kamar Taj discovering new things beyond his imagination. His wisdom saved the Earth from the undefeatable monster of the Dark Dimension, Dormamu. He was the one who added a magical beginning to the Marvel Universe. Now, let’s see how much you remember about the ventures of Dr. Strange without using any magic.
</p>
</section>
<div class="pimg3">
<div class="ptext">
<span class="border trans">
Doctor Strange
<br>
<button type="button" name="button" id="btn2" class="btn1"><a href="drstrangequiz.html"><p style="color:white">Here we come- Kamar-Taj</p></a></button>
</span>
</div>
</div>
<section class="section section-dark">
<h2>Rules!</h2>
<p>- Try Finding out the answer without Googling </p>
<p>- Dont panic seeing weird texts in place of the question. That's just to make it look more interesting. The question is embedded and you have to find it by inspecting the webpage. </p>
<p>- Better take some Felix Felicis before attempting the quiz. </p>
</section>
<div class="pimg4">
<div class="ptext">
<span class="border trans">
Don't be afraid to perform any ritual!
</span>
</div>
</div>
<div id="audio" class="Audio">
<audio src="bgm_home_page.mp3" controls>
</audio>
</div>
<footer>
<div align="center">
Made with <span style="color: black">♥</span> by Magic Knights
</div>
</footer>
</body>
</html>