-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfind.html
More file actions
58 lines (50 loc) · 1.49 KB
/
find.html
File metadata and controls
58 lines (50 loc) · 1.49 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>job search</title>
</head>
<body>
<div id="job-postings">
<ul class="all">
<li>
<a href="job.html" rel="job-posting" class="title">Job Title</a>
<br />
<span class="employer">Employer Name</span>
<br />
<span class="location">Job Location</span>
<br />
<span class="brief-description">A short version of the job description goes here.</span>
</li>
<li>
<a href="job.html" rel="job-posting" class="title">Job Title</a>
<br />
<span class="employer">Employer Name</span>
<br />
<span class="location">Job Location</span>
<br />
<span class="brief-description">A short version of the job description goes here.</span>
</li>
<li>
<a href="job.html" rel="job-posting" class="title">Job Title</a>
<br />
<span class="employer">Employer Name</span>
<br />
<span class="location">Job Location</span>
<br />
<span class="brief-description">A short version of the job description goes here.</span>
</li>
</ul>
</div>
<div id="job-search">
<form method="get" action="find.html">
<input type="text" name="search" value="" />
<input type="submit" value="Search jobs" />
</form>
</div>
<div id="queries">
<ul>
<li><a href="index.html" rel="jobs-all home" title="homepage">home</a></li>
</ul>
</div>
</body>
</html>