-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
36 lines (36 loc) · 1.57 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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" />
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
<!-- don't forget to link the CSS and JS -->
<!-- I'm using Font Awesome for the prev and next arrows -->
<!-- I'll also provide the github repo in the desc with the code and all the images -->
<title>Image Slider</title>
</head>
<body>
<div class="slider_container">
<span class="leftBtn">
<i class="fas fa-arrow-left"></i>
</span>
<div class="slider">
<img src="./images/image5.jpg" alt="" class="first_img">
<!-- here we'll add the last image -->
<img src="./images/image1.jpg" alt="">
<img src="./images/image2.jpg" alt="">
<img src="./images/image3.jpg" alt="">
<img src="./images/image4.jpg" alt="">
<img src="./images/image5.jpg" alt="">
<!-- here we'll add the first image -->
<img src="./images/image1.jpg" alt="" class="last_img">
</div>
<span class="rightBtn">
<i class="fas fa-arrow-right"></i>
</span>
</div>
</body>
</html>