-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
42 lines (37 loc) · 1.36 KB
/
join.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="banner">
<h1>Join our Team!</h1>
</div>
<main>
<section class="job-listing">
<h2>Software Developer</h2>
<p>Develop and maintain web applications. Experience with JavaScript required.</p>
</section>
<section class="job-listing">
<h2>Graphic Designer</h2>
<p>Create engaging designs for digital platforms. Proficiency in Adobe Suite preferred.</p>
</section>
<section class="job-listing">
<h2>Marketing Specialist</h2>
<p>Develop marketing strategies and manage campaigns. Strong analytical skills needed.</p>
</section>
<section class="how-to-apply">
<h2>How to Apply</h2>
<p>Please send your resume and cover letter to <a href="mailto:[email protected]">[email protected]</a>.</p>
</section>
</main>
<footer>
<button onclick="location.href='dir.html'">Return to Home Page</button>
<button onclick="location.href='about.html'">About</button>
<button onclick="location.href='more.html'">More</button>
</footer>
</body>
</html>