-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
656 lines (576 loc) Β· 19.5 KB
/
Copy pathindex.html
File metadata and controls
656 lines (576 loc) Β· 19.5 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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KHALED ALMALKI </title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Navigation */
nav {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
transition: all 0.3s ease;
}
nav.scrolled {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: white;
text-decoration: none;
}
nav.scrolled .logo {
color: #333;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
nav.scrolled .nav-links a {
color: #333;
}
.nav-links a:hover {
color: #ffd700;
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="700" r="150" fill="url(%23a)"/><circle cx="600" cy="200" r="80" fill="url(%23a)"/></svg>');
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
}
.hero-content {
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
opacity: 0;
animation: fadeInUp 1s ease forwards;
}
.hero p {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0;
animation: fadeInUp 1s ease 0.3s forwards;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, #ff6b6b, #ee5a24);
color: white;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
transition: transform 0.3s ease, box-shadow 0.3s ease;
opacity: 0;
animation: fadeInUp 1s ease 0.6s forwards;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Sections */
.section {
padding: 5rem 0;
background: white;
}
.section:nth-child(even) {
background: #f8f9fa;
}
.section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
}
/* About Section */
.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 3rem;
align-items: center;
}
.profile-img {
width: 300px;
height: 300px;
border-radius: 50%;
object-fit: cover;
border: 5px solid #667eea;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-text {
font-size: 1.1rem;
line-height: 1.8;
}
/* Skills Section */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.skill-card {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease;
}
.skill-card:hover {
transform: translateY(-5px);
}
.skill-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
/* Projects Section */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.project-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
}
.project-img {
width: 100%;
height: 200px;
background: linear-gradient(45deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
}
.project-content {
padding: 1.5rem;
}
.project-title {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: #333;
}
.project-description {
color: #666;
margin-bottom: 1rem;
}
.project-links {
display: flex;
gap: 1rem;
}
.project-link {
color: #667eea;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.project-link:hover {
color: #764ba2;
}
/* Contact Section */
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: start;
}
.contact-info {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 2rem;
border-radius: 10px;
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.contact-item i {
font-size: 1.5rem;
margin-right: 1rem;
width: 30px;
}
.contact-form {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #333;
font-weight: bold;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 2px solid #e0e0e0;
border-radius: 5px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #667eea;
}
.submit-btn {
background: linear-gradient(45deg, #667eea, #764ba2);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: transform 0.3s ease;
}
.submit-btn:hover {
transform: translateY(-2px);
}
/* Footer */
footer {
background: #333;
color: white;
text-align: center;
padding: 2rem 0;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 1rem;
}
.social-links a {
color: white;
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #667eea;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.contact-content {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav id="navbar">
<div class="container">
<div class="nav-container">
<a href="#home" class="logo">KHALED ALMALKI</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h1>KHALED ALMALKI</h1>
<p>Application development and data analysis</p>
<a href="#contact" class="cta-button">Get In Touch</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<h2>About Me</h2>
<div class="about-text">
<p>
I'm a <strong>senior IT student at Taif University</strong>, with a solid background in application
development and data analysis Iβm passionate about leveraging innovative technology solutions to
enhance business efficiency and support data-driven decision-making.
Iβm passionate about leveraging innovative technology solutions to enhance business efficiency and
support data-driven decision-making.
I excel in optimizing workflows through collaborative problem-solving, and I'm committed to
continuous learning and contributing to forward-thinking projects in the tech sector.
</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section">
<div class="container">
<h2>My Skills</h2>
<div class="skills-grid">
<div class="skill-card">
<div class="skill-icon">π</div>
<h3>Frontend Development</h3>
<p>HTML5, CSS3, JavaScript, TypeScript</p>
</div>
<div class="skill-card">
<div class="skill-icon">βοΈ</div>
<h3>Backend Development</h3>
<p>Python, Java, REST APIs</p>
</div>
<div class="skill-card">
<div class="skill-icon">ποΈ</div>
<h3>Database Management</h3>
<p>PostgreSQL, MySQL, Redis, Firebase</p>
</div>
<div class="skill-card">
<div class="skill-icon">π¨</div>
<h3>UI/UX Design</h3>
<p>Figma, Adobe XD, Sketch, Photoshop, Responsive Design</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section">
<div class="container">
<h2>Featured Projects</h2>
<div class="projects-grid">
<div class="project-card">
<div class="project-img"></div>
<div class="project-content">
<h3 class="project-title">Brain Tumors</h3>
<p class="project-description">This repository hosts the Brain Tumors dataset from Kaggle,
consisting of MRI scans of brain tumors. Itβs ideal for training and evaluating
machine-learning models for classification, segmentation, or detection tasks.</p>
<div class="project-links">
<a href="https://github.com/KHALEDoz/urban-octo-carnival" class="project-link"
target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-img"></div>
<div class="project-content">
<h3 class="project-title">Tamni</h3>
<p class="project-description">
β’ Helps assess patients' conditions before they arrive at the emergency department.
<div class="project-links">
<a href="https://www.canva.com/design/DAGRqC2b278/h3arUMwez16dVQwdNEo5hQ/view"
class="project-link" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-img"></div>
<div class="project-content">
<h3 class="project-title">Forms Generator</h3>
<p class="project-description">project addresses the challenges users face when
creating surveys, especially in Microsoft Forms. The
tool uses AI algorithms to analyze the content and
automatically import it into Microsoft Forms.</p>
<div class="project-links">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<h2>Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<h3>Let's Connect</h3>
<div class="contact-item">
<i>π§</i>
<span>khaled.salmlki@gmail.com</span>
</div>
<div class="contact-item">
<i>π±</i>
<span>+966 544 133 622</span>
</div>
<div class="contact-item">
<i>π</i>
<span>Jeddah , Saudi Arabia</span>
</div>
<div class="contact-item">
<i>πΌ</i>
<span>Available for freelance projects</span>
</div>
</div>
<form class="contact-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="social-links">
<a href="#" title="LinkedIn">πΌ</a>
<a href="#" title="GitHub">π»</a>
<a href="#" title="Twitter">π¦</a>
<a href="#" title="Instagram">π·</a>
</div>
<p>© 2025 John Doe. All rights reserved.</p>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Navbar scroll effect
window.addEventListener('scroll', () => {
const navbar = document.getElementById('navbar');
if (window.scrollY > 50) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
// Form submission
document.querySelector('.contact-form').addEventListener('submit', function (e) {
e.preventDefault();
alert('Thank you for your message! I\'ll get back to you soon.');
this.reset();
});
// Intersection Observer for animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe all sections
document.querySelectorAll('.section').forEach(section => {
section.style.opacity = '0';
section.style.transform = 'translateY(20px)';
section.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(section);
});
</script>
</body>
</html>