-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Staffing & Recruiting Company</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="hero">
<h1 class="hero-title">Connecting Talent with Opportunity</h1>
<button class="cta-button">Get Started</button>
</header>
<section class="about-us">
<h2>About Us</h2>
<p>
We specialize in connecting businesses with top talent. Our team is
dedicated to helping companies find the right fit for their needs.
</p>
</section>
<section class="services">
<h2>Services</h2>
<div class="service-card">Temporary Staffing</div>
<div class="service-card">Direct Placement</div>
<div class="service-card">Executive Search</div>
</section>
<section class="success-stories">
<h2>Success Stories</h2>
<div class="testimonial">
"This company helped us find the perfect candidate for our team!"
</div>
<div class="testimonial">
"Excellent service! We couldn't have done it without them."
</div>
</section>
<section class="careers">
<h2>Careers</h2>
<p>Explore open positions and find your next opportunity with us.</p>
<button class="cta-button">Browse Jobs</button>
</section>
<section class="contact-us">
<h2>Contact Us</h2>
<form class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" class="message-text"></textarea>
<button type="submit" class="cta-button">Send Message</button>
</form>
</section>
<footer>
<p>© 2025 Staffing & Recruiting Co. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>