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 - Job Posting</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">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">
<input type="search" placeholder="Search jobs...">
</div>
</nav>
</header>
<main>
<article class="job-posting">
<header class="job-posting-header">
<h1>Job Title</h1>
<h2>Company Name</h2>
</header>
<section class="job-description">
<p>Job Description content...</p>
</section>
<aside class="job-requirements">
<h3>Requirements</h3>
<ul>
<li>Requirement 1</li>
<li>Requirement 2</li>
<li>Requirement 3</li>
</ul>
</aside>
<footer class="job-application">
<button type="button" class="apply-button">Apply</button>
</footer>
</article>
</main>
<footer>
<p>&copy; 2024 JobSphere</p>
</footer>
<script src="script.js"></script>
</body>
</html>