top of page

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Job Listings</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            text-align: center;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .job {
            border-bottom: 1px solid #ddd;
            padding: 15px;
            text-align: left;
        }
        .job:last-child {
            border-bottom: none;
        }
        .apply-btn {
            display: inline-block;
            padding: 10px 15px;
            background: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 3px;
            margin-top: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Latest Job Listings</h1>
        
        <div class="job">
            <h2>Frontend Developer</h2>
            <p>Company: ABC Tech</p>
            <p>Location: Remote</p>
            <p>Experience: 2+ years</p>
            <a href="#" class="apply-btn">Apply Now</a>
        </div>
        
        <div class="job">
            <h2>Backend Developer</h2>
            <p>Company: XYZ Solutions</p>
            <p>Location: New York, USA</p>
            <p>Experience: 3+ years</p>
            <a href="#" class="apply-btn">Apply Now</a>
        </div>
    </div>
</body>
</html>

bottom of page