OneCompiler

Cars Website

285
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Car Enthusiasts</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <h1>Welcome to Car Enthusiasts!</h1> </h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#gallery">Gallery</a></li> <li><a href="#about">About Cars</a></li> </ul> </nav> </header>
<section id="home">
    <h2>Discover the World of Cars</h2>
    <p>Explore different types of cars, their features, and much more!</p>
</section>

<section id="gallery">
    <h2>Car Gallery</h2>
    <div class="gallery-container">
        <img src="https://assets.onecompiler.app/437dbpjv7/437dbmb5t/download%20(3).jfif" alt="Car 1">
        <img src="https://assets.onecompiler.app/437dbpjv7/437dbmb5t/download.jfif" alt="Car 2">
        <img src="https://assets.onecompiler.app/437dbpjv7/437dbmb5t/download%20(1).jfif" alt="Car 3">
        <img src="https://assets.onecompiler.app/437dbpjv7/437dbmb5t/download%20(2).jfif" alt="Car 4">
    </div>
</section>

<section id="about">
    <h2>About Cars</h2>
    <p>Cars are vehicles that are designed for transportation. They come in various shapes, sizes, and types, including sedans, SUVs, trucks, and sports cars.</p>
    <p>Cars have evolved significantly over the years, incorporating advanced technology for safety, efficiency, and performance.</p>
</section>

<footer>
    <p>&copy; 2025 Car Enthusiasts. All rights reserved.</p>
</footer>

<script src="script.js"></script>
</body> </html>