-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
68 lines (62 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Greg's List</title>
</head>
<body>
<nav class="navigation">
<h1>Greg's List</h1>
<ul>
<li>
<a href="#">Post</a>
</li>
<li>
<a href="#">Account</a>
</li>
</ul>
</nav>
<main class="wrapper">
<form>
<label for="search">Search Jobs</label>
<br>
<input type="text" id="search" placeholder="Search Software Jobs">
<a href="#"><img src="./magnifying-glass.png" alt="Search Icon"></a>
</form>
<section class="pagination">
<ul>
<li>
<a href="#">
< prev</a>
</li>
<li>1 to 100 of 179</li>
<li>
<a href="#">next ></a>
</li>
</ul>
</section>
<section class="search-results">
<ul>
<li>
<span class="date">June 22</span>
<a href="#" class="result">Front End Developer</a>
<span class="address">Midtown East</span>
</li>
<li>
<span class="date">June 21</span>
<a href="#" class="result">Technical Project Manager</a>
<span class="address">SoHo</span>
</li>
<li>
<span class="date">June 20</span>
<a href="#" class="result">Senior Python Developer / Cofounder</a>
<span class="address">Flatiron</span>
</li>
</ul>
</section>
</main>
</body>
</html>