-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsearch.html
More file actions
75 lines (73 loc) · 3.07 KB
/
search.html
File metadata and controls
75 lines (73 loc) · 3.07 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
<!DOCTYPE HTML>
<head>
<link href="css/reset.css" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous">
<link href="css/base.css" rel="stylesheet">
<link href="css/search.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-md bg-faded justify-content-center fixed-top">
<a href="/" class="navbar-brand d-flex w-50 mr-auto text-uppercase text-white">RankUp</a>
<button class="navbar-toggler text-white" type="button" data-toggle="collapse" data-target="#collapsingNavbar3">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse w-100" id="collapsingNavbar3">
<ul class="nav navbar-nav ml-auto w-100 justify-content-end">
<li class="nav-item">
<a class="nav-link text-uppercase text-white" href="#">how it works</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase text-white" href="#">signup / login</a>
</li>
</ul>
</div>
</nav>
<main>
<div class="container purple-outside">
<div class="purple-box d-inline-block">
<p>RankUp!</p>
<h1>You've been ranked!</h1>
<p>Based on your resume, here are the top 20 results:</p>
</div>
<div class="filters d-inline-block">
<strong>Filters:</strong><br />
<a href="#">Full-Time</a><br />
<a href="#">Part-Time</a><br />
<a href="#">Contract / Temporary</a><br />
<a href="#">Commission</a><br />
<a href="#">Internship</a><br />
<a href="#">Remote</a><br />
</div>
</div>
<section>
<div class="container row job">
<div class="employment-type col- d-inline-block">
<i class="fas fa-bookmark"></i>
<p>Full-Time</p>
</div>
<div class="col-md">
<div class="purple-job-beam col-lg d-inline-block">
<div class="d-inline-block">
<strong>Google</strong>
<p>Greater Seattle Area</p>
</div>
<div class="d-inline-block text-uppercase">
<strong>software developer</strong>
<div class="d-inline-block">
4 stars
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js" integrity="sha384-pjaaA8dDz/5BgdFUPX6M/9SUZv4d12SUPF0axWc+VRZkx5xU3daN+lYb49+Ax+Tl"
crossorigin="anonymous"></script>
</body>