-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gregslist.html
52 lines (43 loc) · 1.51 KB
/
Gregslist.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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Gregslist Job Search</title>
<meta charset="utf-8" name="description" content="Gregslist exercise for 5.7 assignment">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="Gregslist.css">
</head>
<body>
<header>
<h2 class="title">Greg's List</h2>
<nav class="nav_head">
<a class="header_nav" href="#">Post</a>
<a class="header_nav" href="#">Account</a>
</nav>
</header>
<main>
<form>
<input type="search" value="Search software jobs">
<button class="fa fa-search" aria-hidden="true"></button>
</form>
<nav class="results_nav">
<a href="#">< prev</a>
<span>1 to 100 of 179</span>
<a href="#">next ></a>
</nav>
<ul class="results">
<li class="result_listing">
<button><span class="fa fa-star" aria-hidden="true"></span></button>
<p>June 22 <a class="position" href="#">Technical Project Manager</a>Midtown East</p>
</li>
<li class="result_listing">
<button><span class="fa fa-star" aria-hidden="true"></span></button>
<p>June 21 <a class="position" href="#">Frontend Developer</a>SoHo</p>
</li>
<li class="result_listing">
<button><span class="fa fa-star" aria-hidden="true"></span></button>
<p>June 20 <a class="position" href="#">Senior Python Developer / Cofounder</a>Flatiron</p>
</li>
</ul>
</main>
</body>
</html>