Gourav Bakoriya

<!DOCTYPE html>
<html>
<head>
    <title>Meesho Clone</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
        }
        header {
            background: #f43397;
            color: white;
            padding: 15px;
            text-align: center;
        }
        .products {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
        }
        .card {
            width: 200px;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 8px;
        }
        .card img {
            width: 100%;
        }
        button {
            background: #f43397;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            width: 100%;
        }
    </style>
</head>
<body>

<header>
    <h1>Meesho Clone</h1>
</header>

<div class="products">
    <div class="card">
        <img src="https://via.placeholder.com/200" alt="Product">
        <h3>Women's Kurti</h3>
        <p>₹499</p>
        <button>Add to Cart</button>
    </div>

    <div class="card">
        <img src="https://via.placeholder.com/200" alt="Product">
        <h3>Men's Shirt</h3>
        <p>₹699</p>
        <button>Add to Cart</button>
    </div>
</div>

</body>
</html>
Latest Stories

Updates

View All Updates