-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
374 lines (311 loc) · 11.7 KB
/
about.html
File metadata and controls
374 lines (311 loc) · 11.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About — A. M. Zayed Abdullah</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Orbitron:wght@600&display=swap"
rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #e0f7ff;
overflow-x: hidden;
position: relative;
}
canvas#matrixCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
background: black;
}
header {
text-align: center;
padding: 3rem 1rem;
color: #00ffff;
font-family: 'Orbitron', sans-serif;
font-size: 2.3rem;
letter-spacing: 2px;
text-shadow: 0 0 20px #00ffff;
z-index: 1;
position: relative;
animation: glowPulse 3s infinite alternate;
}
.section {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 3rem 1rem;
max-width: 1100px;
margin: 2rem auto;
background: rgba(255, 255, 255, 0.05);
border-radius: 25px;
box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
backdrop-filter: blur(12px);
position: relative;
z-index: 1;
opacity: 0;
transform: translateY(50px);
animation: fadeInUp 1s ease forwards;
}
.text {
flex: 1 1 500px;
padding: 1.5rem;
}
.text h2 {
color: #00ffff;
font-family: 'Orbitron', sans-serif;
font-size: 1.8rem;
margin-bottom: 0.8rem;
text-shadow: 0 0 10px #00ffff;
}
.text p {
line-height: 1.8;
color: #bdefff;
font-size: 1.05rem;
}
.image {
flex: 1 1 400px;
display: flex;
justify-content: center;
align-items: center;
}
.image img {
width: 90%;
max-width: 400px;
border-radius: 20px;
box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
transition: all 0.5s ease;
}
.image img:hover {
transform: scale(1.05);
box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}
.social-links {
position: relative;
z-index: 2;
text-align: center;
margin: 2rem 0;
}
.social-links a {
display: inline-block;
text-decoration: none;
color: #00ffff;
border: 2px solid #00ffff;
margin: 0.5rem;
padding: 10px 20px;
border-radius: 25px;
transition: 0.3s ease;
font-weight: 600;
}
.social-links a:hover {
background:#00ffff;
color:#000;
box-shadow:0 0 25px #00ffff;
}
.btn-back {
display:inline-block;
margin:3rem auto;
padding:10px 25px;
border-radius:25px;
border:2px solid #00ffff;
color:#00ffff;
text-decoration:none;
font-weight:600;
transition:0.3s ease;
text-align:center;
z-index:1; position:relative;
}
.btn-back:hover {
background:#00ffff;
color:#000;
box-shadow:0 0 25px #00ffff;
}
footer {
text-align: center;
padding: 2rem;
color: #aaa;
font-size: 0.9rem;
position: relative;
z-index: 1;
}
ul {
list-style: none;
padding-left: 0;
line-height: 1.8;
}
ul li {
margin: 6px 0;
}
@keyframes glowPulse {
from {
text-shadow: 0 0 10px #00ffff;
}
to {
text-shadow: 0 0 25px #00ffee;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width:768px) {
.section {
flex-direction: column;
}
.image img {
max-width: 90%;
}
}
</style>
</head>
<body>
<canvas id="matrixCanvas"></canvas>
<header>About — A. M. Zayed Abdullah</header>
<div class="section">
<div class="text">
<h2>Who Am I?</h2>
<br>
<p>
I’m <strong>A. M. Zayed Abdullah</strong> — a CS Student, Developer, Graphics Designer, Animator, Audio & Video Expert from Bangladesh. My journey blends <strong>AI, Aerospace Technology, Mechanical Design and Graphics Design</strong> to build experiences that connect imagination with innovation.
</p>
</div>
<div class="image"><img src="img/uiucsefest.jpg" alt="Developer profile"></div>
</div>
<div class="section">
<div class="image"><img src="img/mariner.jpg" alt="UIU CSE Fest">
<div class="text">
<h2>Recognition & Gratitude</h2>
<br>
<p>
Proud to be part of
<a href="https://csefest.uiu.ac.bd/gratitude" target="_blank" style="color:#00ffff;"><strong>UIU CSE
Fest</strong></a>,
as Graphics Designer.
</p>
<p>
Proud to be part of
<a href="https://uwra.uiu.ac.bd/index.php/about/" target="_blank" style="color:#00ffff;"><strong>UIU
Mariner</strong></a>,
as Mechanical Designer, Manufacturer & ROV Co-Pilot.
</p>
</div>
</div>
</div>
<div class="section">
<div class="text">
<h2>Education</h2>
<p>Here’s a glimpse of my educational background</p>
<br>
<p>
<strong><a href="https://www.uiu.ac.bd/" target="_blank" style="color:#00ffff;">United International University (UIU)</a></strong> - Stuyding B.Sc. in Computer Science & Engineering<br>
<strong><a href="https://bciccollege.edu.bd/" target="_blank" style="color:#00ffff;">BCIC College</a></strong> - Completed Higher Secondary Education<br>
<strong><a href="https://mubc.edu.bd/" target="_blank" style="color:#00ffff;">Monipur High School & College (Branch-1)</a></strong> - Completed Secondary Education
</p>
</div>
<div class="image"><img src="img/uiu.jpg" alt="Work and education"></div>
</div>
<!-- My Work -->
<div class="section">
<div class="image"><img src="img/mariner_zayed.png" alt="UIU Mariner"></div>
<div class="text">
<h2>My Work</h2>
<br>
<p>
<ul>
<li>Mechanical Designer, Manufacturer & ROV Co-Pilot - <strong><a href="https://www.facebook.com/uiumrc" target="_blank" style="color:#00ffff;">UIU Advanced Underwater Robotics & Automation Crew</a></strong></li>
<li>Head of Graphics - <strong><a href="https://www.facebook.com/uiuappf" target="_blank" style="color:#00ffff;">UIU APP Forum</a></strong></li>
</ul>
</p>
</div>
</div>
<div class="section">
<div class="text">
<h2>My Previous Work</h2>
<br>
<p>
<ul>
<li>Founder & CEO - <strong><a href="https://www.facebook.com/skullknox" target="_blank" style="color:#00ffff;">SkullKnox</a></strong></li>
<li>Content Creator - <strong><a href="https://www.facebook.com/tutoriya.tech" target="_blank" style="color:#00ffff;">Tutoriya</a></strong></li>
<li>Band Manager - <strong><a href="https://www.facebook.com/metronixbd" target="_blank" style="color:#00ffff;">METRO-nix</a></strong></li>
<li>President of Editing - <strong><a href="https://www.facebook.com/mubcpvc" target="_blank" style="color:#00ffff;">MUBC Photography Club Branch-1</a></strong></li>
<li>Video & Audio Editor - <strong><a href="https://www.facebook.com/ghuristudio" target="_blank" style="color:#00ffff;">Ghuri Studio</a></strong></li>
</ul>
</p>
</div>
<div class="image"><img src="img/ghuri.jpg" alt="Ghuri Studio"></div>
</div>
<!-- <div class="section">
<div class="text">
<h2>Beyond Code</h2>
<p>
Outside coding, I’m a <strong>video editor, animator, and audio designer</strong>.
From motion graphics to sound design, I ensure every project looks and sounds its best.
</p>
</div>
<div class="image"><img src="img/media.jpg" alt="Creative work"></div>
</div> -->
<div class="social-links">
<a href="https://github.com/amzayedabdullah" target="_blank">GitHub</a>
<a href="https://www.facebook.com/amzayed.abdullah" target="_blank">Facebook</a>
<a href="https://www.instagram.com/amzayedabdullah/" target="_blank">Instagram</a>
</div>
<div class="back-wrapper" style="text-align:center; z-index:1; position:relative; margin:3rem auto;">
<a href="index.html" class="btn-back" aria-label="Back to Home">← Back to Home</a>
</div>
<script>
const sections = document.querySelectorAll('.section');
const revealOnScroll = () => {
const triggerBottom = window.innerHeight * 0.85;
sections.forEach(sec => {
const boxTop = sec.getBoundingClientRect().top;
if (boxTop < triggerBottom) sec.style.opacity = '1';
});
};
window.addEventListener('scroll', revealOnScroll);
revealOnScroll();
const canvas = document.getElementById('matrixCanvas');
const ctx = canvas.getContext('2d');
function resizeCanvas() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
}
window.addEventListener('resize', resizeCanvas);
resizeCanvas();
const letters = "アァカサタナハマヤャラワガザダバパイィキシチニヒミリギジヂビピウゥクスツヌフムユュルグズヅブプエェケセテネヘメレゲゼデベペオォコソトノホモヨョロゴゾドボポ0123456789ABCDEF";
const fontSize = 12;
const columns = Math.floor(canvas.width / fontSize);
const drops = Array(columns).fill(0);
function drawMatrix() {
ctx.fillStyle = "rgba(0,0,0,0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#ABFCFCFF";
ctx.font = fontSize + "px monospace";
for (let i = 0; i < drops.length; i++) {
const text = letters.charAt(Math.floor(Math.random() * letters.length));
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) drops[i] = 1;
drops[i]++;
}
requestAnimationFrame(drawMatrix);
}
drawMatrix();
</script>
</body>
</html>