-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobseeker.html
93 lines (85 loc) · 3.62 KB
/
jobseeker.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hiredly - Find Freelancers</title>
<link rel="stylesheet" href="jobstyle.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="logo">Hiredly</div>
<div class="auth-buttons">
<button class="btn-sign-in" onclick="window.location.href='logins_signups/usertype.html'">Sign in</button>
<button class="btn-log-in" onclick="window.location.href='logins_signups/usertype.html'">Log in</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Scale your professional<br>workforce with <span class="stylized">freelancers</span></h1>
<div class="search-container">
<input type="text" placeholder="Search for jobs...">
<button class="search-button">
<img src="images/searchicon.png" alt="Search" class="icon">
</button>
</div>
</div>
</section>
<!-- Trusted By Section -->
<section class="trusted-by">
<h2>Trusted By</h2>
<div class="logo-container">
<img src="images/spotify.png" alt="Spotify">
<img src="images/search.png" alt="Google">
<img src="images/microsoft.png" alt="Microsoft">
<img src="images/beats.png" alt="Beats">
<img src="images/adobe.png" alt="Adobe">
</div>
<div class="logo-container second-row">
<img src="images/youtube.png" alt="Youtube">
<img src="images/starbucks.png" alt="Burger King">
<img src="images/paypal.png" alt="PayPal">
<img src="images/apple-logo.png" alt="Apple">
<img src="images/snapchat.png" alt="Snapchat">
</div>
</section>
<!-- Services Section -->
<section class="services">
<h2>Our Services</h2>
<div class="service-cards">
<div class="service-card">
<div class="icon-circle">
<img src="images/briefcase.png" alt="Post a Job" class="icon">
</div>
<h3>Find a Job</h3>
<p>Create your free profile today and start receiving competitive offers from top employers within just a few hours.</p>
<a href="logins_signups/freelansign.html" class="browse-link">Create Account →</a>
</div>
<div class="service-card">
<div class="icon-circle">
<img src="images/searchgreen.png" alt="Hire Freelancer" class="icon">
</div>
<h3>Hire Freelancer</h3>
<p>Create your free job posting today and start enjoying competitive quotes from qualified professionals within just a few hours.</p>
<a href="#" class="browse-link">Hire Now →</a>
</div>
<div class="service-card">
<div class="icon-circle">
<img src="images/lock.png" alt="Make Secure Payment" class="icon">
</div>
<h3>Make Secure Payment</h3>
<p>Your secure payment is the first step towards achieving your goals effortlessly.</p>
<a href="payment.html" class="browse-link">Read more →</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-legal">
<p>© 2025 Hiredly - All Rights Reserved</p>
</div>
</footer>
</body>
</html>