# HTML code for KBS Computer Landing Page
html_code = '''
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>KBS Computer - Your Tech Solution Partner</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }
        header {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        nav {
            background-color: #34495e;
            padding: 1rem;
            text-align: center;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
        }
        .hero {
            text-align: center;
            padding: 3rem;
            background-color: #ecf0f1;
        }
        .services {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 1rem;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>
    <header>
        <h1>KBS Computer</h1>
        <p>Your Trusted Technology Partner</p>
    </header>
    
    <nav>
        <a href="#home">Home</a>
        <a href="#services">Services</a>
        <a href="#about">About</a>
        <a href="#contact">Contact</a>
    </nav>

    <div class="hero">
        <h2>Welcome to KBS Computer</h2>
        <p>Professional IT Solutions for Business and Individual Needs</p>
    </div>

    <div class="services">
        <h2>Our Services</h2>
        <ul>
            <li>Computer Sales & Repair</li>
            <li>Network Solutions</li>
            <li>IT Consulting</li>
            <li>Software Installation</li>
            <li>Data Recovery</li>
            <li>Cybersecurity Solutions</li>
        </ul>
    </div>

    <footer class="footer">
        <p>&copy; 2024 KBS Computer. All rights reserved.</p>
    </footer>
</body>
</html>