HTMLify

BCA test 01
Views: 16 | Author: himanshu
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Open BCA Community</title>
    <style>
        body {
            background-color: #1e1e1e;
            color: #ffffff;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
        }
        header {
            text-align: center;
            padding: 20px;
        }
        h1 {
            font-size: 32px;
        }
        .bracket {
            color: #f92672;
        }
        section {
            background-color: #2d2d2d;
            margin: 20px auto;
            padding: 20px;
            max-width: 800px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 24px;
            color: #66d9ef;
        }
        .join-button {
            display: inline-block;
            background-color: #0088cc;
            color: #ffffff;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            margin-top: 10px;
        }
        .join-button:hover {
            background-color: #006699;
        }
        footer {
            text-align: center;
            padding: 10px;
            font-size: 14px;
        }
    </style>
</head>
<body>
    <header>
        <h1>
            <span class="bracket">{</span>
            Open BCA Community
            <span class="bracket">}</span>
        </h1>
    </header>
    <main>
        <section id="intro">
            <h2>Welcome to the Open BCA Community</h2>
            <p>
                Open BCA Community is a student-driven community for Online and Open BCA students across India. We’re here to learn, grow, and support each other through shared knowledge, collaboration, and motivation.
            </p>
            <p>
                Our goal is to bridge the gap between online education and real-world success by staying consistent, building together, and helping each other level up.
            </p>
        </section>
        <section id="spaces">
            <h2>Our Spaces</h2>
            <ul>
                <li><strong>Open BCA</strong> – Academics & Career Support</li>
                <li><strong>BCA [ Chilling ]</strong> – Off Topic Fun & Chill</li>
                <li><strong>Hackathon Group</strong> – Preparation, Planning, Team-ups & Project Building</li>
                <li><strong>Admin Panel</strong> – Management & Planning</li>
            </ul>
            <p>One goal. One community. Growing together.</p>
        </section>
        <section id="whatsapp">
            <h2>Join Our WhatsApp Group</h2>
            <p>
                Connect with fellow BCA students for discussions, support, and updates:
            </p>
            <a href="https://chat.whatsapp.com/JDyWIXHe3CJ2nG1LhPX7KO" class="join-button" target="_blank">Join Now</a>
        </section>
        <section id="discord">
            <h2>Join Our Discord Server</h2>
            <p>
                Engage with the community on Discord for real-time collaboration and more:
            </p>
            <a href="https://discord.gg/TqPJFBZ2" class="join-button" target="_blank">Join Now</a>
        </section>
    </main>
    <footer>
        <p>© 2025 Open BCA Community. All rights reserved.</p>
    </footer>
</body>
</html>

Comments