-
Notifications
You must be signed in to change notification settings - Fork 501
Expand file tree
/
Copy pathIndex.html
More file actions
29 lines (25 loc) · 831 Bytes
/
Index.html
File metadata and controls
29 lines (25 loc) · 831 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Slider</title>
<link rel="stylesheet" href="style.css"> <!--Styles and layout of the page can be changed from here -->
</head>
<body>
<div class="ImageSlides">
<div class="Images">
<img src="Image1.png"> <!--Images can be added as per users choice here-->
</div>
<div class="Images">
<img src="Image2.jpg">
</div>
<div class="Images">
<img src="Image3.png">
</div>
<a class="prev-btn slider-btn" onclick="setSlides(-1)"><</a>
<a class="next-btn slider-btn" onclick="setSlides(1)">></a>
</div>
<script src="slider.js"></script>
</body>
</html>