-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
30 lines (30 loc) · 1.01 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
<!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">
<script src="script.js" defer></script>
<title>Document</title>
</head>
<body>
<section aria-label="Newest Photos">
<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="slide" data-active>
<img src="https://source.unsplash.com/78A265wPiO4" alt="Nature Image #1">
</li>
<li class="slide">
<img src="https://source.unsplash.com/eOpewngf68w" alt="Nature Image #2">
</li>
<li class="slide">
<img src="https://source.unsplash.com/ndN00KmbJ1c" alt="Nature Image #3">
</li>
</ul>
</div>
</section>
</body>
</html>