Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JobSphere - Jobs</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo"><img src="logo.png" alt="JobSphere Logo" /></div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="jobs.html" class="active">Jobs</a></li>
<li><a href="account.html">Account</a></li>
<li><a href="create-posting.html">Create Posting</a></li>
</ul>
<div class="search-bar" id="search-bar">
<input type="search" placeholder="Search jobs..." />
</div>
</nav>
</header>
<main>
<h1>Jobs</h1>
<section class="recents">
<h2>Recents</h2>
<div class="jobs-grid" id="jobs-list">
<!-- Dynamic Job Cards will be added here -->
</div>
</section>
<section class="recommended">
<h2>Recommended</h2>
<ul>
<li>
<span class="job-title">Job 10</span>
<span class="star-icon"></span>
</li>
<li>
<span class="job-title">Job 11</span>
<span class="star-icon"></span>
</li>
<li>
<span class="job-title">Job 12</span>
<span class="star-icon"></span>
</li>
<li>
<span class="job-title">Job 13</span>
<span class="star-icon"></span>
</li>
<li>
<span class="job-title">Job 14</span>
<span class="star-icon"></span>
</li>
</ul>
</section>
</main>
<footer>
<p>&copy; 2024 JobSphere</p>
</footer>
<script src="script.js"></script>
</body>
</html>