-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
407 lines (351 loc) · 13.2 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
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<title>Zoe Yahmi Darlington Assignment</title>
<style>
:root {
--pink: #ffd6e0;
--green: #c1fba4;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
line-height: 1.6;
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
font-family: 'Courier Prime', monospace;
background-color: #f2f2f2;
color: #231f20;
}
.popover {
position: absolute;
right: 0;
top: 50px;
}
.sr-only {
position: absolute;
left: -10000px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
.menu-btn,
.close-btn {
background: transparent;
outline: none;
border: none;
padding: 0.5rem;
cursor: pointer;
}
svg {
max-width: 50px;
}
header nav {
top: 0;
right: -300px;
width: 300px;
height: 100vh;
padding: 1.5rem;
border: none;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
header nav ul {
list-style: none;
margin-top: 2rem;
}
header nav ul a {
font-size: 1.2rem;
text-decoration: none;
color: #231f20;
text-transform: uppercase;
transition: all ease 0.5ms;
}
header nav ul a:hover {
color: #464545;
font-weight: 600;
}
.header {
display: flex;
align-items: center;
gap: 2rem;
margin-bottom: 3rem;
padding-top: 3rem;
}
.portrait-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}
.name-section h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
.student-id {
color: #666;
}
.card {
border: 2px solid #000;
padding: 1.5rem;
margin-bottom: 2rem;
position: relative;
background-color: white;
}
.card-stack {
box-shadow: 4px 4px 0 #000000;
}
.pink-bg {
background-color: var(--pink);
}
.green-bg {
background-color: var(--green);
}
.section-title {
border-bottom: 2px solid #000;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
font-weight: bold;
}
.list {
list-style: circle;
margin-left: 1rem;
}
.quote {
font-size: 1.5rem;
text-align: center;
font-weight: 400;
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.fact {
font-size: 1.5rem;
font-weight: 400;
height: 100%;
padding: 1.5rem;
}
.big-tech {
text-decoration: none;
color: #231f20;
}
.big-tech:hover {
text-decoration: underline;
}
.grid-layout {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.back-to-top {
text-align: right;
margin-top: 2rem;
}
.back-to-top a {
color: #000;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.back-to-top span {
font-weight: bolder;
font-size: 2rem;
}
.back-to-top a:hover,
.back-to-top a:focus {
color: #666;
text-decoration: underline;
}
footer nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 2.5rem;
}
footer nav ul a {
font-size: 1.2rem;
color: #231f20;
text-transform: uppercase;
transition: all ease 0.5ms;
}
footer nav ul a:hover {
color: #464545;
font-weight: 600;
}
footer p {
text-align: center;
margin-top: 3rem;
font-size: 0.9rem;
color: #666;
}
@media (max-width: 768px) {
body {
padding: 1rem;
}
.popover {
top: 0;
right: 10px;
}
.header {
flex-direction: column;
text-align: center;
}
.grid-layout {
grid-template-columns: 1fr;
}
.card {
margin-bottom: 1.5rem;
}
footer nav ul {
flex-direction: column;
}
}
</style>
</head>
<body>
<header id="top" class="header">
<img src="./assets/images/zoe-portrait.png" alt="Portrait photo of Zoe Yahmi Darlington" class="portrait-img">
<div class="name-section">
<h1>ZOE YAHMI DARLINGTON</h1>
<div class="student-id">
<p>STUDENT ID | ALT/SOE/024/5005</p>
</div>
</div>
<div class="popover">
<!-- Popover not compatible with some browsers -->
<button class="menu-btn" popovertarget="menu">
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" x="0px" y="0px" width="40" height="40"
viewBox="0,0,256,256">
<g fill="#231f20" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path d="M0,7.5v5h50v-5zM0,22.5v5h50v-5zM0,37.5v5h50v-5z"></path>
</g>
</g>
</svg>
<span class="sr-only">Open menu</span>
</button>
<nav popover id="menu">
<button class="close-btn" popovertarget="menu" popovertargetaction="hide">
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" x="0px" y="0px" width="40" height="40"
viewBox="0,0,256,256">
<g fill="#231f20" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.15625,6.3125l-2.84375,2.84375l15.84375,15.84375l-15.9375,15.96875l2.8125,2.8125l15.96875,-15.9375l15.9375,15.9375l2.84375,-2.84375l-15.9375,-15.9375l15.84375,-15.84375l-2.84375,-2.84375l-15.84375,15.84375z">
</path>
</g>
</g>
</svg>
<span class="sr-only">Close menu</span>
</button>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./form.html" target="_blank" rel="noopener noreferrer">AltSchool Application</a></li>
<li><a href="./table.html" target="_blank" rel="noopener noreferrer">AltSchool Programs</a></li>
<li><a href="./media.html" target="_blank" rel="noopener noreferrer">Media</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="card pink-bg">
<h2 class="section-title">ABOUT ME <span role="img" aria-label="smiley face">😊</span></h2>
<p>Hello, I'm Zoe. I live in Jos, Nigeria. I'm currently a Frontend Engineering Student at AltSchool, I'm
also pursuing my undergraduate degree and majoring in Computer Science. My long term goal is to become
an exceptional Software Engineer and hopefully work in one of the <a
href="https://en.wikipedia.org/wiki/Big_Tech" class="big-tech">Big Tech companies</a>.</p>
<p>I'm an advocate for empowerment and development, and I try to make the world a better place in my own
little ways. I have an inquisitive mind, so I enjoy learning new stuff everyday.</p>
</section>
<div class="grid-layout">
<section class="card card-stack">
<h2 class="section-title">FAVORITES <span role="img" aria-label="red heart">❤️</span></h2>
<ul class="list">
<li>Listening to music</li>
<li>Watching reality shows</li>
<li>Reading thrillers</li>
<li>Taking long walks</li>
<li>Going on vacation</li>
</ul>
</section>
<section class="card green-bg">
<h2 class="section-title">FUN FACT <span role="img" aria-label="cool face">😎</span></h2>
<p class="fact">I know the NATO phonetic alphabet by heart</p>
</section>
</div>
<div class="card card-stack quote">
<p>"I WANT TO BECOME AN EXCEPTIONAL SOFTWARE ENGINEER"</p>
</div>
<section class="card green-bg">
<h2 class="section-title">WHY I ENROLLED IN ALTSCHOOL <span role="img" aria-label="rocket">🚀</span></h2>
<p>I enrolled in Altschool because I wanted to take my tech journey from "just vibes" to actual skills! I've
always loved learning, but I knew I needed a structured environment to truly grow as a front-end
developer. Altschool felt like the perfect place to gain hands-on experience, connect with like-minded
people, and challenge myself in new ways. It's not just about writing code—it's about building something
meaningful, pushing my limits, and turning my passion into a solid career. Plus, I want to level up with
a supportive community and expert guidance.</p>
</section>
<div class="grid-layout">
<div class="card card-stack quote">
<p>"I LOVE LEARNING!"</p>
</div>
<div class="card pink-bg quote">
<p>
"Set your goals high, and don't stop till you get there." - Bo Jackson</p>
</div>
</div>
<section class="card">
<h2 class="section-title">WHAT MY GOALS ARE <span role="img" aria-label="memo">📝</span> </h2>
<ul class="list">
<li>Be committed to my learning process, attend live classes, watch the content on the LMS and augment
it
with my personal study</li><br>
<li>Get extensive knowledge on HTML, CSS, Javascript, and Javascript frameworks.</li><br>
<li>Be able to build functional and responsive websites and web applications.</li><br>
<li>Collaborate and contribute to OpenSource projects</li><br>
<li>Build and tailor my portfolio website to highlight my skills and projects.</li><br>
<li>Foster connections with my peers, mentors and other individuals in the industry.</li><br>
<li>Apply for positions and start my tech career!</li>
</ul>
</section>
<div class="back-to-top">
<a href="#top" aria-label="Scroll back to top">BACK TO TOP <span>↑</span></a>
</div>
</main>
<footer class="footer">
<nav aria-label="Footer navigation">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./form.html">AltSchool Application</a></li>
<li><a href="./table.html">AltSchool Programs</a></li>
<li><a href="./media.html">Media</a></li>
</ul>
</nav>
<p>© 2025 Zoe Yahmi Darlington</p>
</footer>
</body>
</html>