-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 996 Bytes
/
index.html
File metadata and controls
32 lines (30 loc) · 996 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>CSS Layout Example</title>
<meta charset="utf-8" name="description" content="Greg's List exercise for Thinkful's front end web development course">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<h2>Greg's List</h2>
<ul>
<li><a href="#">Post</a></li>
<li><a href="#">Account</a></li>
</nav>
<main>
<label>Search Jobs</label>
<div class="search">
<input type="text" placeholder="Search software jobs"/><img src="magnifying-glass.png"/>
</div>
<div class="tab"><ul>
<li> < prev</li><li> 1 to 100 of 179</li><li> next ></li>
</ul></div>
<div >
<p class="grey">June 22 </p><p class="blue">Technical Project Manager</p> <p class="grey">Midtown East</p>
<br/><p class="grey">June 21 </p><p class="blue">Frontend Developer</p> <p class="grey">SoHo</p>
<br/><p class="grey">June 20</p><p class="blue">Senior Python Developer / Cofounder</p> <p class="grey">Flatiron</p>
</div>
</main>
</body>
</html>