Assignment3_work_with_sliders/index.html

67 lines
2.9 KiB
HTML
Raw Normal View History

2024-12-30 06:22:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Featured Projects</title>
<!-- Include Swiper CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="styles.css"> <!-- Link to external CSS -->
2024-12-30 06:22:29 +00:00
</head>
<body>
<div class="featured-projects">
<div class="description-container">
<div class="project-description active" id="description-0">
<h1>EarthLink Fiber Internet </h1>
<p>Earthlink epitomizes leadership in digital innovation, seamlessly blending advanced technology with unbeatable connectivity. Our team led the development and design efforts for their digital infrastructure, ensuring seamless integration and optimal performance.</p>
</div>
<div class="project-description" id="description-1">
<h1>Evil Genius Games</h1>
<p>Evil Genius Games redefines immersive gaming experiences with their innovative tabletop RPGs. Our collaboration focused on creating a seamless digital platform to support their creative storytelling and gaming mechanics.</p>
</div>
<div class="project-description" id="description-2">
<h1>Involvvely </h1>
<p>Involvvely simplifies team collaboration with innovative tools designed to enhance productivity and communication. We developed a platform that empowers teams to work smarter and achieve their goals efficiently.</p>
2024-12-30 06:22:29 +00:00
</div>
<div class="pagination-container">
<div class="pagination-button active" data-index="0"></div>
<div class="pagination-button" data-index="1"></div>
<div class="pagination-button" data-index="2"></div>
2024-12-30 06:22:29 +00:00
</div>
</div>
<!-- Image Section -->
<div class="swiper">
<div class="swiper-slide" data-index="0">
<img src="images/elink.webp" alt="EarthLink Project">
</div>
<div class="swiper-slide" data-index="1">
<img src="images/evil.webp" alt="Evil Genius Project">
2024-12-30 06:22:29 +00:00
</div>
<div class="swiper-slide" data-index="2">
<img src="images/involv.webp" alt="Involvvely Project">
</div>
</div>
</div>
<footer class="logos">
<div class="logos-slide">
<img src="./logos/3m.svg" alt="3M Logo" />
<img src="./logos/barstool-store.svg" alt="Barstool Store Logo" />
<img src="./logos/budweiser.svg" alt="Budweiser Logo" />
<img src="./logos/buzzfeed.svg" alt="Buzzfeed Logo" />
<img src="./logos/forbes.svg" alt="Forbes Logo" />
<img src="./logos/macys.svg" alt="Macy's Logo" />
<img src="./logos/menshealth.svg" alt="Men's Health Logo" />
<img src="./logos/mrbeast.svg" alt="MrBeast Logo" />
</div>
</footer>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="scripts.js"></script> <!-- Link to external JavaScript -->
2024-12-30 06:22:29 +00:00
</body>
</html>