-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (55 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- google font -->
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet">
<!-- font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="media.css">
<title>Fetch Jobs</title>
</head>
<body>
<header class="title">
<h2>Fetch Jobs</h2>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
<i class="fas fa-adjust"></i>
</div>
</header>
<div class="top-container">
<form id="search-form">
<form id="search-form">
<input type="text" placeholder="Job Title" id="search">
<input type="text" placeholder="Location" id="location">
<button class="search-button">Search</button>
</form>
</div>
<main class='results'>
<div class="cards">
</div>
</main>
<!-- footer -->
<footer class="footer">
<p>By <a href="https://www.linkedin.com/in/sounav-saha-7590721b5/" target="_blank">Sounav Saha</a>
and
<a href="https://adityapravasen.netlify.app/" target="_blank">Adityaprava Sen</a></p>
<p>Copyright © 2020. All rights reserved</p>
</footer>
<script src="index.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>