-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
384 lines (343 loc) · 12.9 KB
/
profile.html
File metadata and controls
384 lines (343 loc) · 12.9 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
383
384
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Profile - Digital Identity</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.profile-header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
margin-bottom: 30px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}
.profile-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}
.profile-info {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}
.profile-avatar {
width: 150px;
height: 150px;
border-radius: 50%;
background: linear-gradient(45deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
color: white;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
position: relative;
}
.profile-avatar::after {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border-radius: 50%;
background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
z-index: -1;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 0.7; }
50% { transform: scale(1.05); opacity: 0.3; }
100% { transform: scale(1); opacity: 0.7; }
}
.profile-details h1 {
font-size: 2.5rem;
margin-bottom: 10px;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.profile-details .title {
font-size: 1.2rem;
color: #666;
margin-bottom: 15px;
}
.profile-details .bio {
color: #555;
line-height: 1.6;
max-width: 500px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}
.stat-card {
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.stat-card:hover {
transform: translateY(-5px);
}
.stat-number {
font-size: 2rem;
font-weight: bold;
color: #667eea;
margin-bottom: 5px;
}
.stat-label {
color: #666;
font-size: 0.9rem;
}
.content-sections {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 30px;
}
.section {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 30px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.section h2 {
color: #667eea;
margin-bottom: 20px;
font-size: 1.5rem;
}
.skill-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill-tag {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.9rem;
transition: transform 0.2s ease;
}
.skill-tag:hover {
transform: scale(1.05);
}
.project-item {
background: rgba(255, 255, 255, 0.8);
padding: 20px;
border-radius: 15px;
margin-bottom: 15px;
border-left: 4px solid #667eea;
}
.project-item h3 {
color: #667eea;
margin-bottom: 10px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
}
.contact-icon {
width: 20px;
height: 20px;
background: #667eea;
border-radius: 50%;
}
@media (max-width: 768px) {
.profile-info {
flex-direction: column;
text-align: center;
}
.profile-avatar {
width: 120px;
height: 120px;
font-size: 50px;
}
.profile-details h1 {
font-size: 2rem;
}
}
.ai-indicator {
position: fixed;
top: 20px;
right: 20px;
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 10px 20px;
border-radius: 25px;
font-size: 0.9rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from { box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); }
to { box-shadow: 0 5px 25px rgba(102, 126, 234, 0.6); }
}
</style>
</head>
<body>
<div class="ai-indicator">🤖 AI Enhanced Profile</div>
<div class="container">
<div class="profile-header">
<div class="profile-info">
<div class="profile-avatar">👤</div>
<div class="profile-details">
<h1>Yandisa Zide</h1>
<div class="title">A Bachelor of Information Technology (BIT) student at Nelson Mandela University.</div>
<div class="bio">
A motivated and detail-oriented student with a Bachelor of Information Technology, specializing in Software Development (Full Stack).
Skilled in web development with a passion for building responsive user-friendly websites.
Strong problem-solving abilities, effective team collaboration and commitment to delivering high-quality work.
</div>
</div>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">0-6</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat-card">
<div class="stat-number">5</div>
<div class="stat-label">Projects Completed</div>
</div>
<div class="stat-card">
<div class="stat-number">15+</div>
<div class="stat-label">AI Models Deployed</div>
</div>
<div class="stat-card">
<div class="stat-number">99%</div>
<div class="stat-label">Client Satisfaction</div>
</div>
</div>
</div>
<div class="content-sections">
<div class="section">
<h2>Technical Skills</h2>
<div class="skill-list">
<span class="skill-tag">Python</span>
<span class="skill-tag">TensorFlow</span>
<span class="skill-tag">PyTorch</span>
<span class="skill-tag">Scikit-learn</span>
<span class="skill-tag">NLP</span>
<span class="skill-tag">Computer Vision</span>
<span class="skill-tag">Deep Learning</span>
<span class="skill-tag">Machine Learning</span>
<span class="skill-tag">AWS</span>
<span class="skill-tag">Docker</span>
<span class="skill-tag">Kubernetes</span>
<span class="skill-tag">Git</span>
</div>
</div>
<div class="section">
<h2>Recent Projects</h2>
<div class="project-item">
<h3>IT Project Management Web App</h3>
<p>Software tool designed to help manage IT-related projects by organizing tasks, users, roles, and resources in a centralized online platform. It’s particularly useful for teams working on software development, infrastructure deployment, or system upgrades.</p>
</div>
<div class="project-item">
<h3>Health & Insurance Management Systems</h3>
<p>Digital solution used to manage patient healthcare records, insurance claims, policy management, and billing between healthcare providers, patients, and insurance companies.</p>
</div>
<div class="project-item">
<h3>Role-Based Authentication Systems</h3>
<p>Security mechanism that restricts system access based on the roles assigned to users. It ensures that users can only perform actions and access data permitted by their role.</p>
</div>
</div>
<div class="section">
<h2>Contact Information</h2>
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon"></div>
<span>yandisazide@gmail.com</span>
</div>
<div class="contact-item">
<div class="contact-icon"></div>
<span>+27 71 712 2399</span>
</div>
<div class="contact-item">
<div class="contact-icon"></div>
<span>linkedin.com/in/yandisa-zide-94a0a1237/</span>
</div>
<div class="contact-item">
<div class="contact-icon"></div>
<span>github.com/alexchen-ai</span>
</div>
</div>
</div>
</div>
</div>
<script>
// Add interactive animations
document.addEventListener('DOMContentLoaded', function() {
const statCards = document.querySelectorAll('.stat-card');
const skillTags = document.querySelectorAll('.skill-tag');
// Animate stat cards on scroll
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
});
statCards.forEach(card => {
card.style.opacity = '0';
card.style.transform = 'translateY(20px)';
card.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(card);
});
// Add click effects to skill tags
skillTags.forEach(tag => {
tag.addEventListener('click', function() {
this.style.transform = 'scale(1.1)';
setTimeout(() => {
this.style.transform = 'scale(1)';
}, 200);
});
});
});
</script>
</body>
</html>