-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentor.html
189 lines (166 loc) · 4.08 KB
/
mentor.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mentorship Program</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #4caf50;
color: white;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px 0;
}
.intro {
text-align: center;
padding: 40px 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.intro h2 {
margin-top: 0;
}
.mentors {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
margin-top: 40px;
}
.mentor-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
flex: 1;
min-width: 280px;
}
.mentor-card img {
border-radius: 50%;
width: 120px;
height: 120px;
object-fit: cover;
}
.mentor-card h3 {
margin-top: 10px;
margin-bottom: 5px;
}
.mentor-card p {
margin-top: 0;
}
.testimonials {
margin-top: 40px;
}
.testimonial-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-top: 20px;
}
.cta {
text-align: center;
margin-top: 40px;
padding: 40px 20px;
background-color: #4caf50;
color: white;
border-radius: 10px;
}
.cta h2 {
margin: 0;
}
.cta a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: white;
color: #4caf50;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
.cta a:hover {
background-color: #f4f4f4;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
margin-top: 40px;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>Mentorship Program</h1>
</header>
<div class="container">
<section class="intro">
<h2>Unlock Your Potential</h2>
<p>
Join our mentorship program to learn from experienced professionals
and achieve your goals.
</p>
</section>
<section class="mentors">
<div class="mentor-card">
<img src="https://via.placeholder.com/120" alt="Mentor 1" />
<h3>John Doe</h3>
<p>Software Engineer</p>
</div>
<div class="mentor-card">
<img src="https://via.placeholder.com/120" alt="Mentor 2" />
<h3>Jane Smith</h3>
<p>Product Manager</p>
</div>
<div class="mentor-card">
<img src="https://via.placeholder.com/120" alt="Mentor 3" />
<h3>Bob Johnson</h3>
<p>UX Designer</p>
</div>
</section>
<section class="testimonials">
<div class="testimonial-card">
<p>
"This program helped me grow my career in ways I never imagined. The
mentors were incredible!" - Alice
</p>
</div>
<div class="testimonial-card">
<p>
"I gained valuable insights and connections that have propelled me
forward." - Mark
</p>
</div>
</section>
<section class="cta">
<h2>Ready to Start?</h2>
<a href="#">Apply Now</a>
</section>
</div>
<footer>
<p>© 2024 Mentorship Program. All Rights Reserved.</p>
</footer>
</body>
</html>