-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
331 lines (292 loc) · 14.7 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PROJECT-1</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- adding css -->
<link rel="stylesheet" href="./css/style.css">
<!-- css end -->
<!-- adding fonts -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css">
</head>
<body>
<!-- NAVBAR STARTS HERE -->
<nav class="navbar navbar-expand-lg" style="background-color:grey;">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="./images/logo.png" width =100 alt="" srcset=""></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">About Us</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link active dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
DC Comics
</a>
<ul class="dropdown-menu" style="background-color: rgba(0, 0, 0, 0.178);" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Batman Images</a></li>
<li><a class="dropdown-item" href="#">Superman vs Batman</a></li>
<li><a class="dropdown-item" href="#">Wonder Woman</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link active">Superheros</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-light" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- NAVBAR ENDS HERE -->
<!-- CARSOULE STARTS HERE -->
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./images/pexels-erik-mclean-7809122.jpg" height = 500vh class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block text-warning">
<!-- <h5 class="text-uppercase">First slide label</h5>
<p>Some representative placeholder content for the first slide.</p> -->
</div>
</div>
<div class="carousel-item">
<img src="./images/image2.jpeg" height = 500vh class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block ">
<h5 class="text-uppercase text-info ">SUPERMAN</h5>
<!-- <p>Some representative placeholder content for the second slide.</p> -->
</div>
</div>
<div class="carousel-item">
<img src="./images/image3.jpeg" height = 500vh class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h5 class="text-warning">AQUAMAN</h5>
<!-- <p>Some representative placeholder content for the third slide.</p> -->
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<!-- CARSOULE ENDS HERE -->
<!-- MAIN BODY STARTS HERE -->
<div class="container-fluid bg-black bg-gradient text-white ">
<div class="row">
<!-- tagline -->
<div class="col-12">
<h1 class="display-6 text-center mt-3 mb-4 text-warning">Some of the superheros of DC hero</h1>
</div>
</div>
<!-- new row -->
<div class="row justify-content-evenly bg-black bg-gradient">
<div class="col-md-3 text-center bg-danger">
<h4 class="mb-2 mt-3"><i class="bi bi-bricks"></i></h4>
<h5>wonder woman</h5>
<p>FEAR HER</p>
</div>
<div class="col-md-3 text-center bg-primary ">
<h4 class="mb-2 mt-3"><i class="bi bi-brightness-high-fill"></i></h4>
<h5>Superman</h5>
<p class="text-uppercase">this is not a S it is the symbol of Hope</p>
</div>
<div class="col-md-3 text-center bg-info">
<h4 class="mb-2 mt-3"><i class="bi bi-camera-reels-fill"></i></h4>
<h5>Zack Synder</h5>
<p class="text-uppercase">Goat director</p>
</div>
</div>
<!-- new row ends here -->
<!-- line -->
<hr>
<!-- line ends here -->
<!-- new row FOR PROGRESS -->
<div class="row justify-content-evenly pt-2">
<div class="col-md-5 pt-3">
<img src="./images/side.jpg" class= "img-fluid" alt="...">
</div>
<div class="col-md-5 pt-2">
<h5 class="mt-5">Strength</h5>
<div class="progress">
<div class="progress-bar bg-success" role="progressbar" style="width: 96%" aria-valuenow="96" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<h5 class="mt-5">Speed</h5>
<div class="progress">
<div class="progress-bar bg-info" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<h5 class="mt-5">Intelligence</h5>
<div class="progress">
<div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<h5 class="mt-5">Money</h5>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
</div>
</div>
<!-- new row ends here -->
<hr>
<!-- form starts here -->
<div class="row justify-content-evenly mt-4">
<div class="col-md-5">
<form>
<h4 class="mb-4">Form</h4>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">
<h5>Email address</h5></label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text text-danger">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label"><h5>Password</h5></label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="Name" class="form-label">
<h5>Name</h5>
</label>
<input type="text" class="form-control" id="Name">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label text-danger" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-warning mb-3">Submit</button>
</form>
</div>
<div class="col-md-5">
<h3 class="mb-4">Address</h3>
<strong>GOTHAM CITY</strong>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d12094.977321734777!2d-74.00943406065981!3d40.723644469288494!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c2598c5e51e2f3%3A0xce2f3449f490f818!2sSoHo%2C%20New%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2sin!4v1654767013208!5m2!1sen!2sin"
style="width: 100%;" height="400" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
<!-- form ends here -->
<hr>
<!-- FAQ STARTS HERE -->
<div class="row justify-content-evenly mt-3">
<div class="col-10">
<h3 class ="text-center mb-3 text-warning">FAQ</h3>
<div class="accordion border" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne"
aria-expanded="true" aria-controls="collapseOne">
Superman vs Batman
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse bg-info" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Batman, armed with a Kryptonite spear as his intended killing weapon, emerges victorious when the two finally come to
blows, and from a narrative perspective, Batman v Superman could go no other route.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Batman superpowers
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body bg-primary bg-gradient">
Unlike most superheroes, Batman does not possess any superpowers, instead relying on his intellect, fighting skills, and
wealth.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Black Adam
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body bg-warning">
One of the world's foremost wielders of magic, Black Adam has been both hero and villain over a life that's spanned
thousands of years. Thousands of years before Billy Batson became a magically-empowered hero, the wizard Shazam selected
another champion.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- FAQ ENDS HERE -->
<!-- footer -->
<div class="row justify-content-evenly bg-danger mt-4 border text-center text-black">
<div class="col-3 mt-4">
<h4 class="text-warning">DoomsDay</h4>
<p>Doomsday is a supervillain appearing in American comic books published by DC Comics, commonly as one of Superman's
deadliest foes, as well as the Justice League. Created by writer-artist Dan Jurgens, the character had a cameo
appearance in Superman: The Man of Steel #17 (November 1992) and made his first full appearance in Superman: The Man of
Steel #18 (December 1992).[2]</p>
</div>
<div class="col-3 mt-4">
<h4 class="text-warning">Superman</h4>
<p>Faster than a speeding bullet, more powerful than a locomotive… The Man of Steel fights a never-ending battle for truth,
justice, and the American way.
From his blue uniform to his flowing red cape to the "S" shield on his chest, Superman is one of the most immediately
recognizable and beloved DC Super Heroes of all time. The Man of Steel is the ultimate symbol of truth, justice, and
hope. He is the world's first Super Hero and a guiding light to all.</p>
</div>
<div class="col-3 mt-4">
<h4 class="text-warning">Batman</h4>
<p>the name of his murdered parents, Bruce Wayne wages eternal war on the criminals of Gotham City. He is vengeance. He
is the night. He is Batman.
One of the most iconic fictional characters in the world, Batman has dedicated his life to an endless crusade, a war on
all criminals in the name of his murdered parents, who were taken from him when he was just a child.</p>
</div>
</div>
</div>
<!-- footer ends here -->
<!-- copyright -->
<div class="row justify-content-evenly text-center bg-info">
<div class="col-10">
@copyright jyotiraditya 2022
</div>
</div>
<!-- copyright ends here -->
</div>
<!-- MAIN BODY END HERE -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>