-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.html
More file actions
108 lines (100 loc) · 3.6 KB
/
single.html
File metadata and controls
108 lines (100 loc) · 3.6 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jobs</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="./css/master.css">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="site-wrapper">
<header class="site-header">
<h2 class="site-title"><a href="#">Job Offers</a></h2>
</header>
<div class="job-single">
<main class="job-main">
<div class="job-card">
<div class="job-primary">
<header class="job-header">
<h2 class="job-title"><a href="#">Front End Developer</a></h2>
<div class="job-meta">
<a class="meta-company" href="#">Company Awesome Ltd.</a>
<span class="meta-date">Posted 14 days ago</span>
</div>
<div class="job-details">
<span class="job-location">The Hague (The Netherlands)</span>
<span class="job-type">Contract staff</span>
</div>
</header>
<div class="job-body">
<p>Our band of superheroes are looking for a self-driven, highly organised individual who will join the team in creating our most important products.</p>
<p>Location is unimportant, as long as you are available, enthusiastic, committed, passionate, and know your stuff.</p>
<p>For this role, we need a superhero who will take on the challenges of working in one of the leading WordPress companies, enhancing our website, products, and services, backed by a quality team of pros.</p>
<h3>Responsibilities</h3>
<p>You’ll be part of a development team working on our flagship products. It’s going to be epic!</p>
</div>
</div>
</div>
</main>
<aside class="job-secondary">
<div class="job-logo">
<div class="job-logo-box">
<img src="https://i.imgur.com/ZbILm3F.png" alt="">
</div>
</div>
<a href="#" class="button button-wide">Apply now</a>
<a href="#">apple.com</a>
</aside>
</div>
<h2 class="section-heading">Other related jobs:</h2>
<ul class="jobs-listing">
<li class="job-card">
<div class="job-primary">
<h2 class="job-title"><a href="#">Front End Developer</a></h2>
<div class="job-meta">
<a class="meta-company" href="#">Company Awesome Ltd.</a>
<span class="meta-date">Posted 14 days ago</span>
</div>
<div class="job-details">
<span class="job-location">The Hague (The Netherlands)</span>
<span class="job-type">Contract staff</span>
</div>
</div>
<div class="job-logo">
<div class="job-logo-box">
<img src="https://i.imgur.com/ZbILm3F.png" alt="">
</div>
</div>
</li>
<li class="job-card">
<div class="job-primary">
<h2 class="job-title"><a href="#">Front End Developer</a></h2>
<div class="job-meta">
<a class="meta-company" href="#">Company Awesome Ltd.</a>
<span class="meta-date">Posted 14 days ago</span>
</div>
<div class="job-details">
<span class="job-location">The Hague (The Netherlands)</span>
<span class="job-type">Contract staff</span>
</div>
</div>
<div class="job-logo">
<div class="job-logo-box">
<img src="https://i.imgur.com/ZbILm3F.png" alt="">
</div>
</div>
</li>
</ul>
<footer class="site-footer">
<p>Copyright 2020 | Developer links:
<a href="/edits.html">Edits</a>,
<a href="/index.html">Home</a>,
<a href="/single.html">Single</a>
</p>
</footer>
</div>
</body>
</html>