-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="app.css" />
<title>Carousel</title>
</head>
<body>
<div class="carousel">
<div class="carousel-images">
<img src="images/image-1.jpg" alt="image-1" class="active" />
<img src="images/image-2.jpg" alt="image-2" />
<img src="images/image-3.jpg" alt="image-3" />
</div>
<div class="prev-next">
<button id="prev"><i class="fas fa-chevron-left"></i></button>
<button id="next"><i class="fas fa-chevron-right"></i></button>
</div>
<div class="dots">
<div class="dot dot-active"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>