You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
928 B
HTML
26 lines
928 B
HTML
2 months ago
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Image Carousel</title>
|
||
|
<link rel="stylesheet" href="css/styles.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="carousel">
|
||
|
<div class="carousel-inner">
|
||
|
<div class="carousel-item active">
|
||
|
<img src="img/activty/greenScreen-4.png" alt="Image 1">
|
||
|
</div>
|
||
|
<div class="carousel-item">
|
||
|
<img src="img/activty/20240730_153345.jpg" alt="Image 2">
|
||
|
</div>
|
||
|
<div class="carousel-item">
|
||
|
<img src="img/activty/20240318_195731.jpg" alt="Image 3">
|
||
|
</div>
|
||
|
</div>
|
||
|
<button class="carousel-control prev" onclick="prevSlide()">❮</button>
|
||
|
<button class="carousel-control next" onclick="nextSlide()">❯</button>
|
||
|
</div>
|
||
|
|
||
|
<script src="js/script.js"></script>
|
||
|
</body>
|