-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
382 lines (348 loc) · 11.8 KB
/
index.html
File metadata and controls
382 lines (348 loc) · 11.8 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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevX</title>
<!-- bootstrap icons -->
<link
rel="stylesheet"
href=" https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header>
<nav>
<!-- logo -->
<h2><strong>DevX</strong></h2>
<!-- hamburger icon -->
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="30"
fill="currentColor"
class="bi bi-list"
viewBox="0 0 16 16"
id="hamburger-icon"
>
<path
fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"
width="100"
/>
</svg>
<!-- hamburger menu -->
<div id="hamburger-menu">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Our Programs</a></li>
<li><a href="">Why TPU</a></li>
<li><a href="">Community</a></li>
<li><a href="">Contact Us</a></li>
<li><a href="">FAQs</a></li>
</ul>
<div>
<button id="signin-btn">Sign in</button>
<button id="signup-btn" class="active-button">Sign Up</button>
</div>
</div>
<!-- nav menu -->
<ul id="nav-menu">
<li><a href="">Home</a></li>
<li><a href="">Our Programs</a></li>
<li><a href="">Why TPU</a></li>
<li><a href="">Community</a></li>
<li><a href="">Contact Us</a></li>
<li><a href="">FAQs</a></li>
</ul>
<!-- nav cta -->
<div id="nav-cta">
<button id="signin-btn">Sign in</button>
<button id="signup-btn" class="active-button">Sign Up</button>
</div>
</nav>
</header>
<main>
<!-- hero section -->
<section id="hero-section">
<div>
<small>Welcome to DevX</small>
</div>
<h1>
Defining your future Starts <br />
With growing your skills
</h1>
<p>
The go to place where developers gets discovered by employers. Your
<br />
best developer hub.
</p>
<div><button class="active-button">Get Started</button></div>
</section>
<!-- achevements section -->
<section id="achevements-section">
<h2 class="header-text">Here are a few numbers that we are proud of</h2>
<!-- achievements -->
<div>
<!-- first achievement -->
<div class="achevements">
<img src="./assets/Duotone/Trophy.png" alt="" />
<div>
<h5>17+</h5>
<small>AWARDS REWARDED</small>
</div>
</div>
<!-- second achievement -->
<div class="achevements">
<img src="./assets/Duotone/Users.png" alt="" />
<div>
<h5>20+</h5>
<small>TEACHERS</small>
</div>
</div>
<!-- third achievement -->
<div class="achevements">
<img src="./assets/Duotone/Smiley.png" alt="" />
<div>
<h5>13,000+</h5>
<small>SUCCESSFUL MEMBERS</small>
</div>
</div>
<!-- forth achievement -->
<div class="achevements">
<img src="./assets/Duotone/Users.png" alt="" />
<div>
<h5>315+</h5>
<small>COMPLETED PROJECTS</small>
</div>
</div>
</div>
</section>
<!-- our story section -->
<section id="our-story">
<div>
<h2 class="header-text">Our Story</h2>
<p>
<strong>
We’re a Tech hub for aspiring and established developers across
<span>Africa</span>.
</strong>
</p>
<p>
We stand out by providing a community where opportunity meets
preparation, and setup our members for absolute success.
</p>
<p>
We also foster supportive and collaborative growth sessions for
developers to connect and grow together.
</p>
</div>
<img src="./assets/Image.png" alt="" />
</section>
<!-- what set us apply -->
<section id="set-you-aside-section">
<h2>What Sets Us Apart</h2>
<!-- slider button left -->
<i class="bi bi-arrow-left-circle-fill" id="left-slider-arrow"></i>
<!-- slider button right -->
<i class="bi bi-arrow-right-circle-fill" id="right-slider-arrow"></i>
<!-- slider -->
<div id="article-container">
<!-- button -->
<article>
<img
src="./assets/Scholarship.png"
alt="article image"
id="article-icon"
/>
<h4 id="article-header">1. Project-Based Learning:</h4>
<p>
Our commitment to providing well thought out project for our
aspiring developers to build is what makes the mark, we ensure
that our learners have access to top-notch educational content
without the financial burden.
</p>
</article>
<!-- button -->
</div>
</section>
<!-- thriving community -->
<section id="thriving-community-section">
<div id="community-section-container">
<h3>Join Our Thriving Developer Community</h3>
<ul>
<li>
<strong>Shared Knowledge:</strong> Benefit from the collective
wisdom of our community. Ask questions, seek advice, and
contribute your expertise to a supportive environment.
</li>
<li>
<strong>Collaborative Projects:</strong> Find collaborators for
your projects, participate in hackathons, and engage in hands-on
experiences that go beyond theoretical learning.
</li>
<li>
<strong>Networking Opportunities:</strong> Connect with
experienced developers, industry experts, and potential
collaborators. Networking is a key ingredient in a successful
career, and OrraLearn provides the platform for meaningful
connections.
</li>
</ul>
</div>
<div id="community-section-image-container">
<img src="./assets/082.png" alt="" alt="Decorators" id="decorator1" />
<img src="./assets/image 306.png" alt="main image" id="main-image" />
<img src="./assets/080.png" alt="Decorators" id="decorator2" />
</div>
</section>
<!-- grow your career section -->
<section id="grow-with-us">
<div>
<div>
<h2>Grow your career! Start learning with Orralearn.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Suspendisse varius enim in eros.
</p>
<button>Our Courses</button>
</div>
<img src="./assets/Group 39531.png" alt="screenshot" />
</div>
</section>
<!-- mentor section -->
<section id="mentor-section">
<h3>Meet Our Mentors</h3>
<p>
In DevX, instructors from all over the world instruct millions <br />
of students. We offer the knowledge and abilities.
</p>
<div>
<article class="mentor">
<img src="./assets/Fram 1.png" alt="" />
<!-- name -->
<div class="mentor-name-and-title">
<h6>ATO Bradley</h6>
<small> Creator of DevX </small>
</div>
<!-- profiling -->
<small class="profiling">
Former co-founder of Opendoor. Early staff at Spotify and
Clearbit.
</small>
<!-- connection -->
<div class="card-icon">
<i class="bi bi-twitter"></i>
<i class="bi bi-linkedin"></i>
</div>
</article>
<article class="mentor">
<img src="./assets/Frame .png" alt="" />
<!-- name -->
<div class="mentor-name-and-title">
<h6>Florian Lowe</h6>
<small> Developer </small>
</div>
<!-- profiling -->
<small class="profiling">
Lead engineering teams at Figma, Pitch, and Protocol Labs.
</small>
<!-- connection -->
<div class="card-icon">
<i class="bi bi-twitter"></i>
<i class="bi bi-linkedin"></i>
</div>
</article>
<article class="mentor">
<img src="./assets/Frame.png" alt="" style="border-radius: 50%" />
<!-- name -->
<div class="mentor-name-and-title">
<h6>Paul Kamdoum Nji</h6>
<small> UIUX Designer</small>
</div>
<!-- profiling -->
<small class="profiling">
Full Stack Developer, Full stack developer
</small>
<!-- connection -->
<div class="card-icon">
<i class="bi bi-twitter"></i>
<i class="bi bi-linkedin"></i>
</div>
</article>
<article class="mentor">
<img src="./assets/Frame 14.png" alt="" />
<!-- name -->
<div class="mentor-name-and-title">
<h6>Marvin McKinney</h6>
<small> Backend Developer </small>
</div>
<!-- profiling -->
<small class="profiling">
Former frontend dev for Linear, Coinbase, and Postscript.
</small>
<!-- connection -->
<div class="card-icon">
<i class="bi bi-twitter"></i>
<i class="bi bi-linkedin"></i>
</div>
</article>
</div>
</section>
</main>
<!-- footer -->
<footer>
<section id="upper-footer">
<div>
<h4>DevX</h4>
<p>Top learning experiences that create more talent in the world.</p>
</div>
<div id="links">
<!-- links -->
<div>
<h4>Links</h4>
<ul>
<a href=""><li>About Us</li></a>
<li>Programs</li>
<li>Contact</li>
<li>FAQs</li>
</ul>
</div>
<!-- socials -->
<div>
<h4>Socials</h4>
<ul>
<li>Twitter</li>
<li>LinkedIn</li>
<li>Facebook</li>
</ul>
</div>
<!-- legal -->
<div>
<h4>Legal</h4>
<ul>
<li>Terms</li>
<li>Pravicy</li>
</ul>
</div>
</div>
</section>
<!-- lower footer -->
<section id="lower-footer">
<p>© 2023 Orralearn. All rights reserved.</p>
<!-- socials -->
<div>
<a href=""><i class="bi bi-twitter"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-github"></i></a>
</div>
</section>
</footer>
<!-- bootstrap icons js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- custom script -->
<script src="./js/script.js"></script>
</body>
</html>