-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
477 lines (406 loc) · 11.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html" />
<meta charset="UTF-8" />
<title>Chelsea Works</title>
<!--Style for header & footer-->
<style>
h4,
h1,
h2 {
font-size: 50px;
color: navy;
text-shadow: 2px 2px 5px gold;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
text-align: center;
background-color: royalblue;
}
h4,
h1,
h2:hover {
color: black;
}
header {
background-color: rgb(33, 33, 214);
height: 75px;
border-bottom: 2px solid darkblue;
}
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: white;
margin: 0;
}
.badge {
margin: 5px 20px;
text-align: left;
}
.topnav {
float: left;
text-align: left;
margin: 25px;
list-style: none;
display: block;
}
.topnav li {
margin: 10px;
padding: 10px 15px;
float: left;
display: block;
text-align: left;
}
.topnav a {
text-decoration: none;
color: black;
font-weight: 600;
font-size: 18px;
}
#select-navegation {
background-color: navy;
border-radius: 5px;
}
#select-navegation a {
color: gold;
}
footer {
padding: 5px;
padding-right: 20px;
background-color: rgb(33, 33, 214);
color: white;
display: flex;
justify-content: space-between;
}
</style>
<!-- Style for Homepage -->
<style>
.header-vid {
object-fit: cover;
}
.club {
justify-content: center;
background-color: lightgray;
color: royalblue;
display: flex;
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
table {
width: 100%;
padding: 40px;
text-align: center;
min-height: 250px;
}
.page {
text-align: center;
background-color: white;
border-radius: 4px;
width: 100%;
margin: 12px;
font-family: 'Times New Roman', Times, serif;
}
.page img {
width: 100%;
height: 100%;
}
.btn {
font-size: 14px;
background-color: lightblue;
color: royalblue;
border: none;
padding: 10px 40px;
border-radius: 4px;
font-weight: 300;
margin: 20px;
}
h2 {
color: navy;
font-size: 40px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
padding: 10px;
line-height: 1;
background-color: lightskyblue;
}
.page-stadium img {
display: flex;
justify-content: center;
align-items: center;
}
.page-text {
font-family: 'Times New Roman', Times, serif;
font-size: 20px;
color: black;
background-color: white;
text-align: center;
}
#imgmatches {
width: 350px;
height: 250px;
}
#imagech {
width: 350px;
height: 350px;
}
@media only screen and (max-width: 600px) {
tr {
display: flex;
flex-direction: column;
}
}
</style>
<style>
body {
font-family: Arial;
margin: 0;
}
* {
box-sizing: border-box;
}
img {
vertical-align: middle;
}
.container {
display: block;
margin-left: auto;
margin-right: auto;
}
.mySlides {
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
}
.cursor {
cursor: pointer;
}
.prev,
.next {
cursor: pointer;
position: absolute;
top: 40%;
width: auto;
padding: 16px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 20px;
border-radius: 0 3px 3px 0;
user-select: none;
-webkit-user-select: none;
}
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.numbertext {
color: black;
font-size: 20px;
padding: 8px 12px;
top: 0;
}
.caption-container {
text-align: center;
background-color: #222;
padding: 2px 16px;
color: white;
}
.row:after {
content: "";
display: table;
clear: both;
}
.column {
float: left;
width: 16.66%;
}
.demo {
opacity: 0.6;
}
.active,
.demo:hover {
opacity: 1;
}
h2:hover {
color: 'black'
}
#btn {
background-color: navy;
color: gold;
height: 50px;
position: relative;
border: 3px solid gold;
display: flex;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<header>
<img src="images\Chelsea-FC-icon.png" class="badge" alt="badge" width="60" height="60" />
<ul class="topnav">
<li id="select-navegation">
<a href="index.html">HOME PAGE</a>
</li>
<li><a href='aboutchelsea.html'>ABOUT CHELSEA</a></li>
<li><a href="squad.html">SQUAD</a></li>
<li><a href='matches.html'>MATCHES</a></li>
<li><a href='stamfordbridge.html'>STAMFORD BRIDGE</a></li>
<li><a href='contactus.html'>CONTACT</a></li>
</ul>
</header>
<h4>CHELSEA WORKS</h4>
<div style="height: 400px;">
<video width="100%" height="100%" loop muted autoplay class="header-vid">
<source src="images/chelseaVid.mp4" />
</video>
</div>
<br />
<br />
<div class="club">
<h1>All The Information About Chelsea Football Club</h1>
</div>
<div class="container">
<div class="mySlides">
<div class="numbertext">1 / 6</div>
<img src="images\ChelseaChampionsLeague.jpg">
</div>
<div class="mySlides">
<div class="numbertext">2 / 6</div>
<img src="images/maxresdefault.jpg">
</div>
<div class="mySlides">
<div class="numbertext">3 / 6</div>
<img src="images/chelseafixtures.jpg">
</div>
<div class="mySlides">
<div class="numbertext">3 / 6</div>
<img src="images/chelseafixtures.jpg">
</div>
<div class="container">
<div class="mySlides">
<div class="numbertext">4 / 6</div>
<img src="images/Chelsea-ccb035e.jpg">
</div>
<div class="container">
<div class="mySlides">
<div class="numbertext">5 / 6</div>
<img src="images/chelseacup.jpg">
</div>
<div class="container">
<div class="mySlides">
<div class="numbertext">6 / 6</div>
<img src="images/chelseaflag.png">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row">
<div class="column">
<img class="demo cursor" src="images\ChelseaChampionsLeague.jpg" style="width:100%"
onclick="currentSlide(1)" alt="This is a web page dedicated to the Chelsea Futball Club. The goal of this web page is to
provide information to soccer fans and the clubs fans, in order to help access information
about the club and help Chelsea gain more supporters.">
</div>
<div class="column">
<img class="demo cursor" src="images/maxresdefault.jpg" style="width:100%" onclick="currentSlide(2)"
alt="Each manager normally has more than 11 players from whom to choose his team; this is called
a squad. The best 11 players available will normally form the team. In here you will learn about the squads players, their positions, nationalities, ages and much more.">
</div>
<div class="column">
<img class="demo cursor" src="images/chelseafixtures.jpg" style="width:100%" onclick="currentSlide(3)"
alt="
Sat, Apr 2 Chelsea
Brentford
10:00 AM
English Premier League
Wed, Apr 6 Chelsea
v 1stLeg
RealMadrid
3:00 PM
UEFA
Sat, Apr 9 Southampton
vChelsea
10:00 AM
EnglishPremierLeague">
</div>
<div class="column">
<img class="demo cursor" src="images/Chelsea-ccb035e.jpg" style="width:100%" onclick="currentSlide(4)">
</div>
<div class="column">
<img class="demo cursor" src="images/chelseacup.jpg" style="width:60%" onclick="currentSlide(5)">
</div>
<div class="column">
<img class="demo cursor" src="images/chelseaflag.png" style="width:100%" onclick="currentSlide(6)">
</div>
</div>
</div>
</div>
<div class="page">
<br />
<div class="page-container">
<h2>Chelsea's Stadium Stamford Bridge</h2>
</div>
<div class="page-text">
<p>
<ul>
<li>
Stamford Bridge is a football stadium in Fulham, adjacent to the borough of Chelsea in South
West London. It is the home of Premier League club Chelsea. With a capacity of 40,834, it is
the ninth largest venue of the 2021 and 2022 Premier League season."Stamford Bridge" is considered to be
a derivative of "Samfordesbrigge" meaning "the bridge at the sandy ford". Eighteenth century maps show a
"Stanford Creek" running along the route of what is now a railway line at the back of the East Stand as
a tributary of the Thames.</li>
</ul>
</p>
<div class="page-image">
<div class="page-stadium">
<img src="images/stamfordbridge.jpg" alt="stamfordbridge" title="stamfordbridge" />
</div>
</div>
</div>
</div>
<button id="btn" class="float-left submit-button">Learn More</button>
<div>
</div>
<br>
<footer>
Chelsea Works © 2022
</footer>
</body>
<script>
document.getElementById("btn").onclick = function () {
location.href = "stamfordbridge.html";
};
let slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("demo");
let captionText = document.getElementById("caption");
if (n > slides.length) { slideIndex = 1 }
if (n < 1) { slideIndex = slides.length }
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].style.display = "block";
dots[slideIndex - 1].className += " active";
captionText.innerHTML = dots[slideIndex - 1].alt;
}
</script>
</html>