-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
537 lines (491 loc) · 21.9 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<title>Arsenal FC</title>
<script type="text/javascript" src="bundle.js"></script></head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-danger sticky-top">
<a class="navbar-brand" href="#">
<img src="img/icon.png" width="30" height="30" class="d-inline-block align-top" alt="">Arsenal
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">News</a>
</li>
<li class="nav-item active dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Teams
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#Team">First Team</a>
<a class="dropdown-item" href="#Team">Under-23 team</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#Team">Arsenal Women</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link disabled" href="#history">History</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Store</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-dark my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<!--------------------------------------------------------------------------------------------
Carousel-->
<section id="carousel">
<div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/headlines.jpg" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h2>We are the Gunners</h2>
<p>Pride of London</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/crest.jpg" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h2>Petr Cech</h2>
<p>A solid performance against Cardiff City</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/ozil.jpg" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h2>Legends of the game</h2>
<p>King Henry and Lord Dennis</p>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>10% OFF!</strong> Check out our 3rd kit in Arsenal store.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!--Next-match-->
<section id="card-block">
<div class="container">
<div class="card text-center">
<div class="card-header">
Next Match:
</div>
<div class="row">
<div class="col-sm-3">
<img src="img/newcastle.png" width="150rem" height="30" class="d-inline-block align-top" alt="Newcastle">
</div>
<div class="col-sm-6">
<div class="card-body">
<h5 class="card-title">Newcastle United vs Arsenal</h5>
<p class="card-text">20:00 GMT, 15th September, St. James Park.</p>
<!--Button -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Book ticket now.
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Booking Gateway</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
Oops! All tickets sold.
<p>Hurry up next time.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Proceed</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-3">
<img src="img/icon.png" width="150rem" height="30" class="d-inline-block align-top" alt="Arsenal">
</div>
</div>
</div>
<div class="card-footer text-muted">
2 days ago
</div>
</div>
</div>
</section>
<!-- ------------------------------------------------------------------------------------------
News-->
<section id="headlines">
<div class="container">
<div class="card-columns">
<div class="card">
<img class="card-img-top" src="img/cardiff.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">How our attacking artistry cut down Cardiff</h5>
<p class="card-text">Adrian Clarke examines our match in South Wales in more including our attack and defending
in wide areas.</p>
<a href="#" class="btn btn-primary btn-sm">Read more.</a>
</div>
</div>
<div class="card p-3">
<blockquote class="blockquote mb-0 card-body">
<p>"We all felt we'd do it in 2007/08. We were clear at the top of the table in February, only to end up finishing
third."
</p>
<footer class="blockquote-footer">
<small class="text-muted">
Tomas Rosicky in <cite title="Source Title">latest interview</cite>
</small>
</footer>
</blockquote>
</div>
<div class="card">
<img class="card-img-top" src="img/europa.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Europa League</h5>
<p class="card-text">This season's Europa League group stages have been determined - and we will be lining up
in Group E.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="card bg-dark text-white text-center p-3">
<blockquote class="blockquote mb-0">
<p> Leno- "An interesting draw... with long journeys"</p>
<footer class="blockquote-footer">
<small>
Someone famous in <cite title="Source Title">Source Title</cite>
</small>
</footer>
</blockquote>
</div>
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">Carabao Cup</h5>
<p class="card-text">We will face Brentford in Carabao Cup third round</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
<div class="card">
<iframe width="100%" height="auto" src="https://www.youtube.com/embed/ksO8Pyh61fY" frameborder="0" allow="autoplay; encrypted-media"
allowfullscreen></iframe>
</div>
<div class="card p-3 text-right">
<blockquote class="blockquote mb-0">
<p>Internationals: Who's playing and when?</p>
<footer class="blockquote-footer">
<small class="text-muted">
Someone famous in <cite title="Source Title">Source Title</cite>
</small>
</footer>
</blockquote>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Alex Iwobi is relishing his new challenge under Unai Emery.</h5>
<p class="card-text">‘Everybody’s enjoying and buying into the ideas'</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</section>
<!--List Group-->
<hr>
<hr>
<article id="history">
<div class="container text-center">
<h2>A history of over 100 years</h2>
<hr>
<hr>
<div class="row">
<div class="col-sm-6">
<div class="list-group" id="list-tab" role="tablist">
<a class="list-group-item list-group-item-action active" id="list-home-list" data-toggle="list" href="#list-home" role="tab"
aria-controls="home">Laying the Foundations</a>
<a class="list-group-item list-group-item-action" id="list-profile-list" data-toggle="list" href="#list-profile" role="tab"
aria-controls="profile">Highbury</a>
<a class="list-group-item list-group-item-action" id="list-messages-list" data-toggle="list" href="#list-messages" role="tab"
aria-controls="messages">The Wenger Years</a>
<a class="list-group-item list-group-item-action" id="list-settings-list" data-toggle="list" href="#list-settings" role="tab"
aria-controls="settings">The Invincibles</a>
</div>
</div>
<div class="col-sm-6">
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="list-home" role="tabpanel" aria-labelledby="list-home-list">In late
1866, a gaggle of workers from the Woolwich Arsenal Armanent Factory decided to form a football team. They
called themselves Dial Square as a reference to the sundial atop the entrance to the factory. On December 11,
1886, Dial Square romped to a 6-0 victory over Eastern Wanderers; the first game in their initial guise. Shortly
afterwards the name ‘Royal Arsenal’ was adopted.
</div>
<div class="tab-pane fade" id="list-profile" role="tabpanel" aria-labelledby="list-profile-list">Arsenal Stadium,
known almost universally by its original name of Highbury, was the Club’s home from 1913 until 2006. Find out
more about 'The Home of Football'. In 2006, after an emotional final season for the famous stadium, in which
the team sported redcurrent jerseys as a nod to the first Arsenal teams to play there, the gates closed for
the final time on Sunday, May 7. In a fitting send off, Thierry Henry scored a hattrick as Arsenal beat Wigan
Athletic 4-2 to secure a UEFA Champions League spot, at the expense of North London rivals Tottenham Hotspur.</div>
<div class="tab-pane fade" id="list-messages" role="tabpanel" aria-labelledby="list-messages-list">Short-term
tenures for Stewart Houston and Bruce Rioch followed George Graham’s departure but Arsenal were still in need
of a long-term answer. This would be emphatically delivered in the form of a relatively unknown Frenchman who
would change the Club forever. As well as transforming Arsenal on the pitch, the new manager set about revolutionising
his players’ lives away from the pitch, implementing cutting-edge training regimes and dietary systems.
</div>
<div class="tab-pane fade" id="list-settings" role="tabpanel" aria-labelledby="list-settings-list">The 2003–04
season was the 109th in the history of Arsenal Football Club.The club ended the Premier League campaign as
champions without a single defeat – a record of 26 wins and 12 draws.Arsenal had finished the previous season
as runners-up in the Premier League, overhauled by Manchester United in the final ten weeks of the season.
The club was awarded a golden replica trophy by the Premier League once the season concluded and they remained
unbeaten for 49 games, setting a new record. In 2012, the Arsenal team of 2003–04 won the "Best Team" category
in the Premier League 20 Seasons Awards.
</div>
</div>
</div>
</div>
</div>
</article>
<hr>
<!--Team(Accordion)-->
<section id="Team">
<div class="accordion" id="accordionExample">
<div class="container text-center">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
First Team
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
<img src="img/firstteam.jpg" alt="First team">
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">
Under-23 Team
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<img src="img/u23.jpg" alt="Under 23 team">
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Arsenal Women
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<img src="img/women.jpg" alt="Arsenal Women">
</div>
</div>
</div>
</div>
</div>
<hr>
</section>
<!--Registration-->
<section id="registration">
<div class="container">
<form class="needs-validation" novalidate>
<h2>Register to our fan club</h2>
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="validationCustom01">First name</label>
<input type="text" class="form-control" id="validationCustom01" value="" placeholder="First name" required>
<div class="valid-feedback">
Looks good!
</div>
</div>
<div class="col-md-6 mb-3">
<label for="validationCustom02">Last name</label>
<input type="text" class="form-control" id="validationCustom02" placeholder="Last name" required>
<div class="valid-feedback">
Looks good!
</div>
</div>
</div>
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="validationCustom03">Email id</label>
<input type="text" class="form-control" id="validationCustom03" placeholder="[email protected]" required>
<div class="invalid-feedback">
Please provide a mail ID.
</div>
</div>
<div class="col-md-6 mb-3">
<label for="validationCustom04">Country</label>
<input type="text" class="form-control" id="validationCustom04" placeholder="State" required>
<div class="invalid-feedback">
Please mention your country.
</div>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="invalidCheck">
<label class="form-check-label" for="invalidCheck">
Do you want to receive monthly newsletter?
</label>
<div class="invalid-feedback">
You must agree before submitting.
</div>
</div>
</div>
<button class="btn btn-primary" type="submit">Submit form</button>
</form>
<script>
// Example starter JavaScript for disabling form submissions if there are invalid fields
(function () {
'use strict';
window.addEventListener('load', function () {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function (form) {
form.addEventListener('submit', function (event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
</script>
</div>
</section>
<section id="jumbo">
<div class="jumbotron">
<div class="row">
<div class="col-sm-6">
<h1 class="display-4">Did you know?</h1>
<p class="lead">Arsenal is the only club to have gone unbeaten in the entire season(2003/04); becoming the only
club in the history to have won the golden league trophy.</p>
</div>
<div class="col-sm-6">
<img src="img/gold.jpg" alt="Golden Trophy">
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<section id="sponsors">
<h1>Our proud sponsors:</h1>
<div class="container-fluid text-center">
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="#">
<img class="img-fluid d-block mx-auto" src="img/envato.jpg" alt="Emirates">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img class="img-fluid d-block mx-auto" src="img/designmodo.jpg" alt="Puma">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img class="img-fluid d-block mx-auto" src="img/themeforest.jpg" alt="Rwanda">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img class="img-fluid d-block mx-auto" src="img/creative-market.jpg" alt="Gatorade">
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="media">
<div class="container">
<div class="row">
<div class="col-sm-3 text-center">
<span class="copyright">Copyright © Arsenal FC</span>
</div>
<div class="col-sm-6 text-center">
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fab fa-twitter fa-3x"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fab fa-facebook-f fa-3x"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fab fa-linkedin-in fa-3x"></i>
</a>
</li>
</ul>
</div>
<div class="col-sm-3 text-center">
<ul class="list-inline quicklinks">
<li class="list-inline-item">
<a href="#">Privacy Policy</a>
</li>
<li class="list-inline-item">
<a href="#">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>