Untitled

 avatar
unknown
plain_text
2 months ago
5.1 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Karma Chrome</title>
    <style>
        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1e1e2e, #3d1a67);
            color: #fff;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10%;
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff9c00;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            padding: 0;
        }

        nav ul li {
            font-size: 16px;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ff9c00;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: url('hero-image.jpg') no-repeat center center/cover;
        }

        .hero h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, #ff9c00, #ff49c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            margin-top: 20px;
            color: #ddd;
        }

        .hero button {
            margin-top: 30px;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            background: #ff49c7;
            color: #fff;
            cursor: pointer;
            transition: background 0.3s;
        }

        .hero button:hover {
            background: #ff9c00;
        }

        .section {
            padding: 100px 10%;
            text-align: center;
        }

        .section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .products {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .product {
            width: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
        }

        .product img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .product h3 {
            margin: 10px 0;
            font-size: 18px;
        }

        .product button {
            margin: 10px;
            padding: 10px 20px;
            border: none;
            background: #ff9c00;
            color: #fff;
            cursor: pointer;
            transition: background 0.3s;
        }

        .product button:hover {
            background: #ff49c7;
        }

        footer {
            text-align: center;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.8);
            position: relative;
            bottom: 0;
            color: #bbb;
        }

        footer a {
            color: #ff9c00;
            text-decoration: none;
        }

        footer a:hover {
            color: #ff49c7;
        }
    </style>
</head>
<body>
    <header>
        <div class="logo">Karma Chrome</div>
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#shop">Shop</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <div class="hero">
        <h1>Ancient Roots, Future Threads</h1>
        <p>Blending Hindu culture with Y2K aesthetics for a unique fashion statement.</p>
        <button>Explore the Collection</button>
    </div>

    <section class="section" id="shop">
        <h2>Featured Products</h2>
        <div class="products">
            <div class="product">
                <img src="product1.jpg" alt="Product 1">
                <h3>Divine Lotus Crop Top</h3>
                <button>Buy Now</button>
            </div>
            <div class="product">
                <img src="product2.jpg" alt="Product 2">
                <h3>Mandalic Street Hoodie</h3>
                <button>Buy Now</button>
            </div>
            <div class="product">
                <img src="product3.jpg" alt="Product 3">
                <h3>Vedic Vision Cargo Pants</h3>
                <button>Buy Now</button>
            </div>
        </div>
    </section>

    <footer>
        <p>&copy; 2024 Karma Chrome. All Rights Reserved. | <a href="#">Privacy Policy</a></p>
    </footer>
</body>
</html>
Leave a Comment