-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
73 lines (67 loc) · 2.54 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<!-- style -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" />
<link rel="stylesheet" href="Assets/style.css" />
<title>Work Bytes</title>
</head>
<body>
<nav>
<div class="nav-wrapper teal darken-1">
<a href="#" class="brand-logo respoive-text hoverable">WB</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="" class="saved-jobs">Saved Jobs</a></li>
</ul>
</div>
</nav>
<!-- begin header -->
<header class="center-align work-bytes-heading">
<h1>WORK BYTES</h1>
<h2 class="header col s12">Choose your next role next to the best restaurant in town</h5>
<div class="container">
<div class="row">
<div class="col s12 center-align">
<!-- input forms -->
<div class="row">
<form id="form">
<div class="col s12 m6 input-style">
<input placeholder="" id="job-location-city" type="text" class="input-field" />
<label for="city" class="label-text">CITY</label>
</div>
<div class="col s12 m6 input-style">
<input placeholder="" id="job-location-state" type="text" class="input-field" maxlength="2" />
<label for="state" class="label-text">STATE</label>
</div>
</form>
</div>
<div class="button-space" value="submit">
<button class="btn waves-effect find-jobs white grey-text text-darken-4 ">
Find jobs!
</button>
</div>
</div>
</div>
</div>
</header>
<!-- end header -->
<!-- Create Listings -->
<div class="container">
<div class="row">
<!-- create job listings -->
<div class="col s12 m5 job-listings"></div>
<!-- create restaurant listings -->
<div class="col s5 restaurant-listings right"></div>
</div>
</div>
<!-- Compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="Script/script.js"></script>
</body>
</html>