Blog

  • <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Celltone Bayar - Internet Services</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
    
        <style>
            body {
                font-family: Arial, sans-serif;
                margin: 0;
                background: #f5f7fa;
            }
            header {
                background: #0b3d91;
                color: white;
                padding: 20px;
                text-align: center;
            }
            nav {
                background: #062a66;
                padding: 10px;
                text-align: center;
            }
            nav a {
                color: white;
                margin: 0 15px;
                text-decoration: none;
                font-weight: bold;
            }
            .hero {
                padding: 60px 20px;
                text-align: center;
                background: white;
            }
            .hero h1 {
                color: #0b3d91;
            }
            .services {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                padding: 30px;
            }
            .card {
                background: white;
                width: 280px;
                margin: 15px;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }
            footer {
                background: #062a66;
                color: white;
                text-align: center;
                padding: 15px;
                margin-top: 20px;
            }
        </style>
    </head>
    
    <body>
    
    <header>
        <h1>Celltone Bayar</h1>
        <p>BSNL FTTH & AIRFiber Franchise</p>
    </header>
    
    <nav>
        <a href="#">Home</a>
        <a href="#services">Services</a>
        <a href="#contact">Contact</a>
    </nav>
    
    <section class="hero">
        <h1>High-Speed Internet Services</h1>
        <p>Providing reliable broadband connectivity in Kerala and Karnataka</p>
    </section>
    
    <section id="services" class="services">
    
        <div class="card">
            <h2>BSNL FTTH</h2>
            <p>Official broadband fiber connection with high speed and stability.</p>
        </div>
    
        <div class="card">
            <h2>AIRFiber Service</h2>
            <p>Wireless high-speed internet for homes and businesses.</p>
        </div>
    
        <div class="card">
            <h2>Installation & Support</h2>
            <p>Fast installation and customer support across service areas.</p>
        </div>
    
    </section>
    
    <section class="hero" id="contact">
        <h2>Contact Us</h2>
        <p><b>Location:</b> Bayar, Kerala</p>
        <p><b>Service Areas:</b> Kerala & Karnataka</p>
        <p><b>Phone:</b> +91-XXXXXXXXXX</p>
    </section>
    
    <footer>
        <p>© 2026 Celltone Bayar. All Rights Reserved.</p>
    </footer>
    
    </body>
    </html>