-
Notifications
You must be signed in to change notification settings - Fork 0
/
gotham_city.html
317 lines (201 loc) · 10.2 KB
/
gotham_city.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="João Almeida, João Sampaio, Marta Fonseca, Raffaella Olivieri">
<script src="js/jquery-3.3.1.js"></script>
<script src="js/popper.js"></script>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="fontawesome-free/css/all.css">
<script src="js/bootstrap.js"></script>
<link rel="stylesheet" href="css/os_meus_estilos.css">
<link rel="icon" type="image/x-icon" href="imgs/favicon_batman.png" >
<title>Bat Fam | Gotham City</title>
</head>
<body>
<header class="container-fluid text-center">
<img src="imgs/batman_logo.png" class="img-fluid mt-3 mb-3">
</header>
<nav class="navbar navbar-expand-lg navbar-light text-dark sticky-top">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar2">
<span class="fas fa-bars text-white"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar2">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link text-white" href="index.html">
<span class="fas fa-home"></span>
Homepage
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-white" href="#" id="navbardrop1" data-toggle="dropdown">
<span class="fas fa-globe-europe"></span>
Universe
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="batverse.html">Batverse</a>
<a class="dropdown-item" href="timeline.html">Timeline</a>
<a class="dropdown-item" href="allies.html">Allies</a>
<a class="dropdown-item" href="rivals.html">Rivals</a>
<a class="dropdown-item" href="gotham_city.html">Gotham City</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-white" href="#" id="navbardrop2" data-toggle="dropdown">
<span class="fas fa-users"></span>
Bat Fans
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="Fanart.html">Fanart</a>
<a class="dropdown-item" href="conspiracy_theories.html">Conspiracy Theories</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="bat_news.html">
<span class="fas fa-newspaper"></span>
Bat News
</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="Bat_Team.html">
<span class="fab fa-teamspeak"></span>
Bat Team
</a>
</li>
</ul>
<form class="form-inline my-1" >
<div class="d-none d-lg-block">
<input class="form-control mr-sm-2 mb-0" type="text" placeholder="Search"
aria-label="Search">
<span class="fas fa-search text-white"></span>
</div>
</form>
</div>
</nav>
<main class="container-fluid">
<div class="row">
<article class="col-12 px-0">
<div id="carouselBatman" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="imgs/gotham_1.jpg" class="d-block img-fluid w-100">
</div>
<div class="carousel-item">
<img src="imgs/gotham_2.jpg" class=" d-block img-fluid w-100">
</div>
<div class="carousel-item">
<img src="imgs/gotham_3.jpg" class=" d-block img-fluid w-100">
</div>
</div>
<a class="carousel-control-prev" href="#carouselBatman" role="button" data-slide="prev">
<span class="fas fa-chevron-circle-left"></span>
<span class="sr-only">Anterior</span>
</a>
<a class="carousel-control-next" href="#carouselBatman" role="button" data-slide="next">
<span class="fas fa-chevron-circle-right"></span>
<span class="sr-only">Avançar</span>
</a>
</div>
</article>
</div>
<section class="row bg-light">
<article class="col-12 text-center">
<h1 class="font-weight-bold mt-4 mb-2">Welcome to Gotham City</h1>
</article>
</section>
<section class="row bg-light">
<article class="col-12 mt-2 mb-2 text-dark text-center">
<p>I was born and raised in Gotham. It is different from what I believed it was...</p>
<p>The real Gotham is a dark place, where crime, grime and corruption rule!</p>
<p>The death of my parents during an assault made me realize that the crime in Gotham needed to be fought!</p>
<p>So I started to train to fight criminals like these ones...</p>
</article>
</section>
<section class="row">
<article class="w-100">
<div id="carouselBatman2" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="imgs/falcone_fish_money.jpg" class="d-block img-fluid w-100 ">
<div class="carousel-caption d-none d-md-block">
<h2 class="legenda">Falcone and Fish Mooney</h2>
</div>
</div>
<div class="carousel-item">
<img src="imgs/maroni.jpg" class=" d-block img-fluid w-100">
<div class="carousel-caption d-none d-md-block">
<h2 class="legenda">Maroni</h2>
</div>
</div>
<div class="carousel-item">
<img src="imgs/penguin.jpg" class=" d-block img-fluid w-100">
<div class="carousel-caption d-none d-md-block">
<h2 class="legenda">Penguin</h2>
</div>
</div>
<div class="carousel-item">
<img src="imgs/bane.jpg" class=" d-block img-fluid w-100">
<div class="carousel-caption d-none d-md-block">
<h2 class="legenda">Bane</h2>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselBatman2" role="button" data-slide="prev">
<span class="fas fa-chevron-circle-left"></span>
<span class="sr-only">Anterior</span>
</a>
<a class="carousel-control-next" href="#carouselBatman2" role="button" data-slide="next">
<span class="fas fa-chevron-circle-right"></span>
<span class="sr-only">Avançar</span>
</a>
</div>
</article>
</section>
<section class="row bg-light">
<article class="col-12 mt-4 mb-2 text-dark text-center">
<p>They suck...</p>
<p>Well let´s forget about the dark side of Gotham</p>
<p>Would you like to learn more about my city?</p>
<p>Watch this video!</p>
</article>
<article class="embed-responsive embed-responsive-16by9 embed-responsive-item col-12 mt-2 mb-4 text-center">
<iframe src="https://www.youtube.com/embed/1Bph7lK4YBA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</article>
</section>
</main>
<div class="container-fluid">
<footer class="row mt-2">
<article class="col-sm-4 col-lg-2 mt-3 mr-3 ml-3">
<p class="text-white font-weight-bold">DC COMICS</p>
<p class="text-white font-weight-light">Characters </p>
<p class="text-white font-weight-light">Comics</p>
<p class="text-white font-weight-light">Games</p>
<p class="text-white font-weight-light">Movies</p>
</article>
<article class="col-sm-4 col-lg-2 mt-3 mr-3 ml-3">
<p class="text-white font-weight-bold">POLICY</p>
<p class="text-white font-weight-light">Privacy Policy</p>
<p class="text-white font-weight-light">Terms Of Use</p>
<p class="text-white font-weight-light">Cookie Policy</p>
<p class="text-white font-weight-light">Terms and Conditions</p>
</article>
<article class="col-sm-4 col-lg-2 mt-3 mr-3 ml-3">
<p><a href="Bat_Team.html" class="font-weight-bold text-white text-decoration-none">TEAM</a></p>
<p class="text-white font-weight-light">Marta Fonseca</p>
<p class="text-white font-weight-light">Raffaella Olivieri</p>
<p class="text-white font-weight-light">João Sampaio</p>
<p class="text-white font-weight-light">João Almeida</p>
</article>
<article class="col-sm-4 col-lg-2 mt-3 mr-3 ml-3">
<p class="text-white font-weight-bold">SOCIAL</p>
<span class="fab fa-facebook text-white"></span>
<span class="fab fa-twitter-square text-white"></span>
<span class="fab fa-instagram text-white"></span>
<span class="fab fa-youtube text-white"></span>
</article>
</footer>
</div>
</body>
</html>