-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (98 loc) · 4.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OfferontheTable - Find Local Jobs Easily</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="container">
<h1><a href="#">OfferontheTable</a></h1>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="escrow.html">Escrow</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="#" class="btn">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero">
<div class="container">
<h2>Find Local Jobs Easily</h2>
<p>Connecting skilled workers with local jobs. Fast, reliable, and scam-free.</p>
<a href="#" class="btn hero-btn">Get Started</a>
</div>
</section>
<section id="features" class="container">
<h2>Features</h2>
<div class="features-grid">
<div class="feature">
<i class="fas fa-search-location"></i>
<h3>Zip Code Based Search</h3>
<p>Find jobs near you quickly and easily with our zip code based search feature.</p>
</div>
<div class="feature">
<i class="fas fa-user-check"></i>
<h3>Skill Matching</h3>
<p>Match your skills with the right job opportunities effortlessly.</p>
</div>
<div class="feature">
<i class="fas fa-lock"></i>
<h3>Secure Payments</h3>
<p>Guaranteed payments through our secure escrow system.</p>
</div>
<div class="feature">
<i class="fas fa-star"></i>
<h3>Reliability Scores</h3>
<p>Build your reputation with our transparent rating system.</p>
</div>
</div>
</section>
<section id="how-it-works" class="container">
<h2>How It Works</h2>
<ol>
<li>Sign up and create your profile.</li>
<li>Add your skills and years of experience.</li>
<li>Search for jobs in your area using your zip code.</li>
<li>Apply for jobs and communicate with employers through the app.</li>
<li>Complete the job and get paid instantly through our escrow system.</li>
</ol>
</section>
<section id="about-us" class="container">
<h2>About Us</h2>
<p>OfferontheTable is dedicated to connecting skilled workers with local job opportunities. Our platform is designed to be fast, reliable, and scam-free, ensuring a positive experience for both job seekers and employers.</p>
</section>
<footer>
<div class="container">
<h2>Contact Us</h2>
<p>Have questions or need support? Reach out to us!</p>
<form action="#">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
<div class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</footer>
</body>
</html>