-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch.html
34 lines (32 loc) · 1.12 KB
/
search.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Page</title>
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="stylesheet" href="./styles/search.css">
<link rel="icon" href="images/fav.png" type="image/x-icon">
</head>
<body>
<div id="navbar"></div>;
<div id="search">
<input type="text" id="search_input" placeholder="">
<div id="search_result"></div>
</div>;
<div id="results">
<!-- <p class="found">We found these results</p> -->
<div id="integ"></div>
<p id="career"></p>
<select name="" id="sorting">
<option value="">Sort by name</option>
<option value="inc">Sort in [A-Z]</option>
<option value="des">Sort in [Z-A]</option>
</select>
<div id="job_data"></div>
</div>
<div id="foot"></div>
<script src="./scripts/search.js" type="module"></script>
</body>
</html>