OneCompiler

Abdul electrician

1695


Example heading with h2 size

Example heading with h3 size

Following is sample java code.

int i = 10;
if(i>0){
    System.out.println('positive');
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Abdul Electrician</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Abdul Electrician</h1>
        <p>Your trusted partner for all electrical services in Mumbai</p>
    </header>

    <nav>
        <ul>
            <li><a href="#services">Services</a></li>
            <li><a href="#about">About</a></li>
            <li><a href="#contact">Contact</a></li>
        </ul>
    </nav>

    <section id="services">
        <h2>Our Services</h2>
        <div class="service">
            <h3>Electrical Repairs</h3>
            <p>Expert repairs for all electrical issues, ensuring your safety and convenience.</p>
        </div>
        <div class="service">
            <h3>Electrical Fittings</h3>
            <p>Professional installation of electrical fittings, from lights to switches and beyond.</p>
        </div>
        <div class="service">
            <h3>TV Installations</h3>
            <p>Secure and efficient TV installation services, ensuring optimal viewing experience.</p>
        </div>
        <div class="service">
            <h3>Other Accessories</h3>
            <p>Installation and maintenance of a wide range of electrical accessories.</p>
        </div>
    </section>

    <section id="about">
        <h2>About Us</h2>
        <p>With years of experience in the electrical industry, Abdul Electrician provides top-notch services in Mumbai. We are committed to safety, quality, and customer satisfaction.</p>
    </section>

    <section id="contact">
        <h2>Contact Us</h2>
        <p>Phone: <a href="tel:+918692043215">8692043215</a></p>
        <p>Address: Mumbai - 400097</p>
    </section>

    <footer>
        <p>&copy; 2024 Abdul Electrician. All rights reserved.</p>
    </footer>
</body>
</html>