-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (82 loc) · 3.42 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
<!doctype html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="style.css">
<style>
/* CSS Styles */
body {
font-family: Arial, Helvetica, sans-serif;
background-color: yellow;
padding: 0;
margin: 0;
color: goldenrod;
box-sizing: border-box;
font-weight: bold;
}
.container {
width: 1200px;
margin: auto;
}
/* Developer Styles */
#slides {
width: 1200px;
height: 400px;
margin: auto;
}
.small-slides {
width: 300px;
height: 169px;
margin: auto;
}
.card-row {
display: flex;
justify-content: space-between;
}
.card-row > div {
margin: 1em;
flex: 1;
}
</style>
</head>
<body>
<div class="container">
<h1>MY CAROUSEL SLIDESHOW TASK</h1>
<!-- Big Slideshow -->
<!-- delay 8 secs transition time 0.4 secs-->
<div id="slides" class="ms-slides" data-delay="8000" data-transition="500">
<!-- Define the Slide Show Elements -->
<div class="ms-slides__inner">
<img src="/img/dembele1.jpg" class="imgsize" alt="Ousmane Dembele Magical">
<img src="/img/dembele2.jpg" class="imgsize" alt="Dembele at Spotify Camp Nou">
<img src="/img/Dembele3.jpg" class="imgsize" alt="Dembele celebrating a goal scored for Barcelona at US">
<img src="/img/Dembele7.jpg" class="imgsize" alt="Dembele with the world cup trophy in 2018">
<img src="/img/Dembele5.jpg" class="imgsize" alt="Dembele celebrating his goal with barcelona team players">
<img src="/img/Dembele6.jpg" class="imgsize" alt="A Married Ousmane Dembele">
</div>
<!-- <img src="/img/dembele1.jpg" width="1200" height="400" alt="Ousmane Dembele Magical">
<img src="/img/dembele2.jpg" width="1200" height="400" alt="Dembele at Spotify Camp Nou">
<img src="/img/dembele3.jpg" width="1200" height="400" alt="Dembele celebrating a goal scored for Barcelona at US">
<img src="/img/dembele7.jpg" width="1200" height="400" alt="Dembele with the world cup trophy in 2018">
<img src="/img/dembele5.jpg" width="1200" height="400" alt="Dembele celebrating his goal with barcelona team players">
<img src="/img/dembele6.jpg" width="1200" height="400" alt="A Married Ousmane Dembele"> -->
<!-- Show Indicators -->
<ol class="ms-slides__indicators">
<!-- slide indicators -->
</ol>
<!-- Show Next and Previous Buttons -->
<a href="#" class="ms-slides__next-button"></a>
<a href="#" class="ms-slides__prev-button"></a>
</div>
<!-- Notes -->
<div>
<p>This example shows all features in use. Slides are changing every
8 seconds with 500 millisecond transition. The buttons and
indicators are visible.</p>
</div>
<script src="script.js"></script>
<script>
// Other code
</script>
</body>
</html>