-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
164 lines (127 loc) · 5.75 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Job Portl</title>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/manu.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav class="container ">
<div class="logo">
<h1> <a href="/">Job <strong style="color:#DA0037">Portal</strong></a></h1>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
</div>
<ul class="nav-links ">
<li> <a href="#home" class="active">Home</a> </li>
<li class="dash-link"> <a href="/pages/dashboard.html">dashboard</a> </li>
<li> <a href="/pages/jobs.html">Jobs</a> </li>
<li> <a href="/pages/contactus.html">Contact</a> </li>
<button class="btn log-btn"><a href="/pages/auth.html" class="loginBtn">Log in</a></button>
</ul>
<div class="user-login">
<i class="fa fa-user" id="user"></i>
<div class="user-info ">
<span class="username">username: shiine1</span>
</div>
<button class="btn"><a href="/pages/auth.html" class="loginBtn">Log in</a></button>
</div>
</nav>
</header>
<main>
<!-- start hero section -->
<section class="hero-section container">
<div class="hero-left">
<h2 class="hero-title">Find your dream job
Anyone, Anywhere</h2>
<p class="hero-desc">Search and find your dream job is not easier than ever.
Just browse a job and apply</p>
<div class="hero-search">
<input type="text" id="searchInputHome" placeholder="Search Your Dream Job">
<button class="btn" id="searchBtnHome">search</button>
</div>
</div>
<div class="hero-right">
<img src="images/hero1.PNG" alt="hero-img">
</div>
</section>
<!-- end hero section -->
<!-- start job posting -->
<section class="container Recent-jobs ">
<div class="recent-jobs-heading">
<h3>Recent Postings</h3>
</div>
<div class="recent-jobs-list-container">
</div>
<div class="showallbtn">
<button class="showAllBTN " id="showAllbtN"> Explore all jobs</button>
</div>
</section>
<!-- end job posting -->
<!-- Start Hiring Companies -->
<section class="container hiring-companies">
<div class="hiring-compnaies-title">
Top companies and organizations <br> hiring now
</div>
<div class="hiring-companies-slider ">
<div class="slides">
<img src="/images/image1.png" alt="Company 1">
<img src="/images/image2.png" alt="Company 2">
<img src="/images/image3.jpg" alt="Company 3">
<img src="/images/image4.png" alt="Company 4">
<img src="/images/image4.png" alt="Company 4">
<img src="/images/image1.png" alt="Company 1">
</div>
</div>
<div class="stats">
<div class="stat-card">
<div class="stat-value">1000+</div>
<div class="stat-label">Employers</div>
</div>
<div class="stat-card">
<div class="stat-value">200+</div>
<div class="stat-label">Active postings all the time</div>
</div>
<div class="stat-card">
<div class="stat-value">100k+</div>
<div class="stat-label">Candidates</div>
</div>
</div>
</section>
<!-- End Hiring Companies -->
<!-- startfooter -->
<footer class="footer">
<div class="social">
<h3 id="social-heading" class="sr-only"> Follow us on social media</h3>
<a href="https://www.facebook.com/profile.php?id=61567889467630" target="_blank" aria-label="Facebook"><i class="fa-brands fa-facebook"></i></a>
<a href="#" aria-label="Twitter"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
</div>
<hr class="footer-break">
<ul class="footer-links">
<h3 id="footer-links-heading" class="sr-only">Footer Links</h3>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Privacy </a></li>
<li><a href="#">Sitemap</a></li>
</ul>
<p class="copyright"> © 2024 Job Portal. All Rights are Reserved</p>
</footer>
<!-- end footer -->
</main>
<script src="/js/main.js"></script>
</body>
</html>