-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.33 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
<html>
<head>
<title>Image slider</title>
<link rel = "stylesheet" type = "text/css" href = "styles.css">
</head>
<body>
<div class = "slideshow-container">
<div class = "mySlides">
<div class ="numbertext">1 / 3</div>
<img src = "1.jpg" style = "width:100%;height:100%">
<div class = "text">Mobiles</div>
</div>
<div class = "mySlides">
<div class ="numbertext">2 / 3</div>
<img src = "2.jpg" style = "width:100%;height:100%">
<div class = "text">Fashion</div>
</div>
<div class = "mySlides">
<div class ="numbertext">3 / 3</div>
<img src = "3.jpg" style = "width:100%;height:100%">
<div class = "text">Laptop</div>
</div>
<a class = "prev" onclick="plusSlides(-1)">❮</a>
<a class = "next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style = "text-align: center">
<span class = "dot" onclick="currentSlide(1)"></span>
<span class = "dot" onclick="currentSlide(2)"></span>
<span class = "dot" onclick="currentSlide(3)"></span>
</div>
<script src="script.js"></script>
</body>
</html>