-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (34 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Carousel hero section</title>
</head>
<body>
<div class="hero-carousel">
<div class="carousel-slide">
<div class="carousel-text">
<h2>LOREM IPSUM IS HERO</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. <br>Libero error, facere tempora culpa et molestiae ratione possimus nesciunt totam <br>porro accusamus nemo provident quam assumenda consequatur</p>
</div>
<img src="img/image-1.jpg" alt="Slide 1" class="carousel-image">
<img src="img/overlay-image1.jpg" alt="Overlay Image" class="overlay-image">
</div>
<div class="carousel-slide">
<div class="carousel-text">
<h2>BLACK BOX LOREM</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <br>Inventore at magnam libero deserunt nihil exercitationem recusandae nobis <br>suscipit ullam quos, eligendi tempore enim, fugit cumque modi.</p>
</div>
<img src="img/image-2.jpg" alt="Slide 2" class="carousel-image">
<img src="img/overlay-image2.jpg" alt="Overlay Image" class="overlay-image">
</div>
<!-- Add more slides as needed -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<!-- js main file -->
<script src="main-script.js"></script>
</body>
</html>