Skip to content

Commit 3732c18

Browse files
authored
Add basic structure to about.html
1 parent 51b792b commit 3732c18

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

about.html

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,36 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Page Title</title>
7+
<link rel="stylesheet" href="styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>Page Title</h1>
12+
<nav>
13+
<ul>
14+
<li><a href="index.html" target="_blank">Home</a></li>
15+
<li><a href="about.html" target="_blank">About Us</a></li>
16+
<li><a href="jobs.html" target="_blank">Job Listings</a></li>
17+
<li><a href="employers.html" target="_blank">For Employers</a></li>
18+
<li><a href="candidates.html" target="_blank">For Candidates</a></li>
19+
<li><a href="contact.html" target="_blank">Contact</a></li>
20+
</ul>
21+
</nav>
22+
</header>
23+
24+
<main>
25+
<section>
26+
<h2>Section Title</h2>
27+
<p>Content goes here.</p>
28+
</section>
29+
</main>
30+
31+
<footer>
32+
<p>&copy; 2023 Simpatico HR Consultancy. All Rights Reserved.</p>
33+
</footer>
34+
</body>
35+
</html>
136

0 commit comments

Comments
 (0)