Ivarave Japheth kananfe

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HomeBoy And phones 5 & 6</title>
    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            /* Smooth mixed gradient of green and blue */
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: #ffffff;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* Navigation Bar */
        header {
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00ffcc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

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

        .nav-links a:hover {
            color: #00ffcc;
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 4rem auto;
            text-align: center;
            padding: 0 1rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .hero h1 span {
            color: #00ffcc;
        }

        .hero p {
            font-size: 1.2rem;
            color: #e0e0e0;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Products Grid */
        .products-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1rem;
        }

        .grid-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #00ffcc;
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .phone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        /* Product Card */
        .phone-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .phone-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
            border-color: #00ffcc;
        }

        .phone-image-placeholder {
            width: 100%;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #888;
        }

        .phone-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .price {
            color: #00ffcc;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .buy-btn {
            background: #00ffcc;
            color: #0f2027;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .buy-btn:hover {
            background: #ffffff;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.6);
            margin-top: auto;
            font-size: 0.9rem;
            color: #888;
        }
    </style>
</head>
<body>

    <header>
        <div class="nav-container">
            <div class="logo">HomeBoy & Phones 5 & 6</div>
            <nav>
                <ul class="nav-links">
                    <li><a href="#">Home</a></li>
                    <li><a href="#">Phones</a></li>
                    <li><a href="#">About</a></li>
                    <li><a href="#">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <section class="hero">
        <h1>Welcome to <span>HomeBoy And phones 5 & 6</span></h1>
        <p>Your ultimate destination for the latest smartphones. Top brands, unbeatable prices, and local delivery.</p>
    </section>

    <main class="products-container">
        <h2 class="grid-title">Featured Devices</h2>
        
        <div class="phone-grid">
            <div class="phone-card">
                <div class="phone-image-placeholder">[ Phone Image ]</div>
                <h3>Flagship Phone 5</h3>
                <p class="price">$799.99</p>
                <button class="buy-btn">Buy Now</button>
            </div>

            <div class="phone-card">
                <div class="phone-image-placeholder">[ Phone Image ]</div>
                <h3>Premium Phone 6</h3>
                <p class="price">$999.99</p>
                <button class="buy-btn">Buy Now</button>
            </div>

            <div class="phone-card">
                <div class="phone-image-placeholder">[ Phone Image ]</div>
                <h3>Ultra Phone Max</h3>
                <p class="price">$1,199.99</p>
                <button class="buy-btn">Buy Now</button>
            </div>

            <div class="phone-card">
                <div class="phone-image-placeholder">[ Phone Image ]</div>
                <h3>Budget Smart Lite</h3>
                <p class="price">$299.99</p>
                <button class="buy-btn">Buy Now</button>
            </div>
        </div>
    </main>

    <footer>
        <p>&copy; 2026 HomeBoy And phones 5 & 6. All rights reserved.</p>
    </footer>

</body>
</html>

Latest Stories

Updates

View All Updates