-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<section aria-label="Recent Images">
<div class="carousel-container">
<div class="carousel" data-carousel>
<button class="carousel-button prev"data-carousel-button="prev">⇤</button>
<button class="carousel-button next"data-carousel-button="next">⇥</button>
<ul data-slides>
<li class="slides">
<img src="image6.jpeg" id="lastClone" alt="">
<img src="image1.jpeg" alt="">
<img src="image2.jpeg" alt="">
<img src="image3.jpeg" alt="">
<img src="image4.jpeg" alt="">
<img src="image5.jpeg" alt="">
<img src="image6.jpeg" alt="">
<img src="image1.jpeg" id="fistClone" alt="">
</li>
</ul>
</div>
</div>
</section>
</body>
</html>