-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplacement.html
More file actions
91 lines (89 loc) · 4.1 KB
/
Copy pathplacement.html
File metadata and controls
91 lines (89 loc) · 4.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Placements Page</title>
<link rel="stylesheet" href="placement.css">
</head>
<body>
<header>
<div class="header-content">
<h1>Frame your career </h1>
<p>Unlock Your Potential</p>
</div>
</header>
<main>
<div class="container">
<section class="placements-section">
<div class="banner">
<!-- Eye-catching visuals can be added here -->
</div>
<div class="filter">
<!-- Filter component can be added here -->
<select name="filter-options" id="filter-options">
<option value="all">All Placements</option>
<option value="internships">Internships</option>
<option value="jobs">Jobs</option>
<option value="Freelancing">Freelancing</option>
<!-- Add more filter options as needed -->
</select>
</div>
<div class="search">
<!-- Search component can be added here -->
<input type="text" id="search-input" placeholder="Search...">
<button id="search-button">Search</button>
</div>
<h2>Placements</h2>
<div class="placement-list">
<!-- Content dynamically generated from backend -->
<div class="placement">
<h3>Placement Title</h3>
<p>Company: Google </p>
<p>Description: Senior Data Analyst.</p>
<p>Joinend in company: 01/01/2024</p>
<button>Apply</button>
</div>
<!-- More placements can be added dynamically -->
</div>
</section>
<section class="testimonials-section" id="testimonials">
<div class="container">
<h2>Testimonials</h2>
<div class="testimonial">
<div class="testimonial-content">
<p>"I had been searching for a job in my field for months with no luck. Thanks to [Your Website Name], I found the perfect opportunity within weeks of signing up. The support and guidance I received throughout the process were invaluable."</p>
</div>
<div class="testimonial-author">
<p><strong>Emily Johnson</strong></p>
<p>Graphic Designer</p>
</div>
</div>
<div class="testimonial">
<div class="testimonial-content">
<p>"I highly recommend [Your Website Name] to anyone looking to advance their career. The platform is user-friendly, and the job listings are always up-to-date. Thanks to them, I'm now thriving in a new role that perfectly aligns with my skills and interests."</p>
</div>
<div class="testimonial-author">
<p><strong>Michael Smith</strong></p>
<p>Software Developer</p>
</div>
</div>
</div>
</section>
<h2>Top Companies</h2>
<section class="top-companies-section">
<ul class="top-companies">
<i><li>Google</li>
<li>Microsoft</li>
<li>Tesla</li>
<li>Neuralink</li>
<!-- Additional top companies can be added -->
</ul>
</section>
</div>
</main>
<footer>
<p>© 2024 Career Opportunities</p>
</footer>
</body>
</html>