-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>Slideshow Images</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img
src="/uploads/media/default/0001/03/66cf5094908491e69d8187bcf934050a4800b37f.jpeg"
style="width: 100%"
style="width: 100%"
/>
<div class="text">London, Ebgland</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img
src="/uploads/media/default/0001/03/b7d624354d5fa22e38b0ab1f9b905fb08ccc6a05.jpeg"
style="width: 100%"
style="width: 100%"
/>
<div class="text">Sunset in Romania</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img
src="/uploads/media/default/0001/03/5bfad15a7fd24d448a48605baf52655a5bbe5a71.jpeg"
style="width: 100%"
style="width: 100%"
/>
<div class="text">New York, USA</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="index.js"></script>
</body>
</html>
Try it Yourself »