-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.24 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Carousel</title>
<link rel="stylesheet" href="./CarouselCss.css"/>
</head>
<body>
<div class="data-carousel">
<div id="image-1"></div>
<div id="image-2"></div>
<div id="image-3"></div>
<div id="image-4"></div>
<div id="image-5"></div>
<div class="data-images">
<img src="Carousel2.jpg" class="data-image" />
<img src="Carousel3.jpg" class="data-image" />
<img src="Carousel4.jpg" class="data-image" />
<img src="Carousel5.jpg" class="data-image" />
<img src="Carousel1.jpg" class="data-image" />
<img src="Carousel2.jpg" class="data-image" />
</div>
<div class="image-button">
<a href="#image-1" class="switch-button"></a>
<a href="#image-2" class="switch-button"></a>
<a href="#image-3" class="switch-button"></a>
<a href="#image-4" class="switch-button"></a>
<a href="#image-5" class="switch-button"></a>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="CarouselJQuery.js"></script>
</body>
</html>