-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
658 lines (641 loc) · 32.4 KB
/
index.html
File metadata and controls
658 lines (641 loc) · 32.4 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
657
658
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hksharif | Web Developer</title>
<!-- Replace this line -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- With this one -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="loader-content">
<div class="loader-spinner"></div>
<p>Loading my digital universe...</p>
<div class="loader-progress">
<div class="progress-bar"></div>
</div>
</div>
</div>
<!-- Cursor Effect -->
<div class="cursor"></div>
<div class="cursor-follower"></div>
<!-- Header/Navigation -->
<header class="header">
<div class="container">
<a href="#" class="logo">hksharif</a>
<nav class="navbar">
<ul class="nav-links">
<li><a href="#home" class="nav-link active">Home</a></li>
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#skills" class="nav-link">Skills</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</div>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<div class="hero-content">
<h4 class="subtitle">Hello, I'm</h4>
<h1 class="title">Hksharif</h1>
<h2 class="typing-text">Web Developer</h2>
<p class="description">I craft exceptional digital experiences with clean, efficient code and innovative design.</p>
<div class="hero-btns">
<a href="#projects" class="btn primary-btn">View My Work</a>
<a href="#contact" class="btn secondary-btn">Contact Me</a>
</div>
</div>
<div class="image-wrapper">
<img src="./images/Screenshot_2025-04-21_105029-removebg-preview.png" alt="Hksharif" class="main-image">
<div class="floating-tools">
<img src="https://i.pinimg.com/474x/01/e6/21/01e621158668a4b8b7c92f1d1671bd43.jpg" alt="VS Code" class="tool-icon">
<img src="https://i.pinimg.com/474x/29/95/95/29959595fe22edde8408b060d3ac3d82.jpg" alt="Figma" class="tool-icon">
<img src="https://i.pinimg.com/736x/2e/15/41/2e15418dafd9b75d50d1772f1d88bd88.jpg" alt="Node.js" class="tool-icon">
<img src="https://i.pinimg.com/474x/5c/3d/4b/5c3d4b018e0995b97171a35e06da9dae.jpg" alt="XAMPP" class="tool-icon">
<img src="https://i.pinimg.com/736x/ef/19/ad/ef19adcbb25661888a29fb4ca8049f7e.jpg" alt="MySQL" class="tool-icon">
<img src="https://i.pinimg.com/474x/27/a2/f8/27a2f88abe5273c129666eda7733bde1.jpg" alt="PHP" class="tool-icon">
</div>
</div>
</div>
<div class="scroll-down">
<span>Scroll Down</span>
<i class="fas fa-chevron-down"></i>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="section-header">
<h2 class="section-title">About <span>Me</span></h2>
<p class="section-subtitle">Get to know me better</p>
</div>
<div class="about-content">
<div class="about-image">
<div class="image-container">
<img src="Screenshot 2025-04-24 195110.png" alt="Hksharif">
<div class="experience-badge">
<span class="years">3+</span>
<span class="text">Years Experience</span>
</div>
</div>
</div>
<div class="about-text">
<h3>Who am I?</h3>
<p>I'm Hksharif, a passionate web developer specializing in creating modern, responsive websites and web applications. With a keen eye for design and a commitment to clean code, I bring ideas to life in the digital space.</p>
<div class="about-details">
<div class="detail-item">
<span>Name:</span>
<p>Hksharif</p>
</div>
<div class="detail-item">
<span>Email:</span>
<p>hakorimanasharif12@gmail.com</p>
</div>
<div class="detail-item">
<span>From:</span>
<p>Rwanda kigali-kabuga</p>
</div>
</div>
<div class="social-links">
<a href="https://github.com/Hakorimanasharif12"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-dribbble"></i></a>
</div>
<a href="#" class="btn primary-btn download-cv">Download CV</a>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<div class="container">
<div class="section-header">
<h2 class="section-title">My <span>Skills</span></h2>
<p class="section-subtitle">Technologies I work with</p>
</div>
<div class="skills-content">
<div class="skills-description">
<h3>My Expertise</h3>
<p>I've worked with a variety of technologies in the web development world, both front-end and back-end. I'm constantly learning new technologies to stay ahead in this rapidly evolving industry.</p>
</div>
<div class="skills-progress">
<div class="skill-item">
<div class="skill-info">
<span>HTML/CSS</span>
<span>95%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 95%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-info">
<span>JavaScript</span>
<span>90%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 90%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-info">
<span>React</span>
<span>85%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 85%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-info">
<span>Node.js</span>
<span>80%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 80%"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-info">
<span>UI/UX Design</span>
<span>75%</span>
</div>
<div class="progress-bar">
<div class="progress" style="width: 75%"></div>
</div>
</div>
</div>
</div>
<div class="skills-tools">
<h3>Tools & Technologies</h3>
<div class="tools-grid">
<div class="tool-item">
<i class="fab fa-html5"></i>
<span>HTML5</span>
</div>
<div class="tool-item">
<i class="fab fa-css3-alt"></i>
<span>CSS3</span>
</div>
<div class="tool-item">
<i class="fab fa-js"></i>
<span>JavaScript</span>
</div>
<div class="tool-item">
<i class="fab fa-react"></i>
<span>React</span>
</div>
<div class="tool-item">
<i class="fab fa-node-js"></i>
<span>Node.js</span>
</div>
<div class="tool-item">
<i class="fab fa-sass"></i>
<span>SASS</span>
</div>
<div class="tool-item">
<i class="fab fa-git-alt"></i>
<span>Git</span>
</div>
<div class="tool-item">
<i class="fab fa-figma"></i>
<span>Figma</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<div class="section-header">
<h2 class="section-title">My <span>Projects</span></h2>
<p class="section-subtitle">Some of my recent work</p>
</div>
<div class="projects-filter">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="web">Web Design</button>
<button class="filter-btn" data-filter="app">Web App</button>
<button class="filter-btn" data-filter="mobile">Mobile</button>
<button class="filter-btn" data-filter="php">PHP</button>
<button class="filter-btn" data-filter="js">JavaScript</button>
<button class="filter-btn" data-filter="python">Python</button>
<button class="filter-btn" data-filter="java">Java</button>
</div>
<div class="projects-grid">
<!-- Project Items (1-50) -->
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/ecommerce .png" alt="Project 1">
<div class="project-overlay">
<h3>E-commerce Website</h3>
<p>Full-featured online store</p>
<div class="project-links">
<a href="https://tech-bite.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/Tech-Bite" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/grocery store.png" alt="Project 2">
<div class="project-overlay">
<h3>grocery-store</h3>
<p>Full-featured online store</p>
<div class="project-links">
<a href="https://grocery-store-seven-pi.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/grocery-store" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/bugger-plannet.png" alt="Project 2">
<div class="project-overlay">
<h3>grocery-store</h3>
<p>Full-featured online store</p>
<div class="project-links">
<a href="https://burger-planet-five.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/grocery-store" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/shoes.png" alt="Project 1">
<div class="project-overlay">
<h3>Shoes store </h3>
<p>Full-featured online shoes store</p>
<div class="project-links">
<a href="https://ecommerceshaoes.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/Ecommerceshaoes" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/viaplay.png" alt="Project 1">
<div class="project-overlay">
<h3>Via play (movie streaming)</h3>
<p>Full-featured online store</p>
<div class="project-links">
<a href="https://via-play1.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/Via-play1" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/bright day school.png" alt="Project 1">
<div class="project-overlay">
<h3>bright-day-school</h3>
<p>An e-learning website fofr beginners </p>
<div class="project-links">
<a href="https://bright-day-school.vercel.app/courses" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="https://github.com/Hakorimanasharif/Via-play1" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/devlearn.png" alt="Project 1">
<div class="project-overlay">
<h3>Dev-learn website</h3>
<p>Full-basic courses and description of dev langauges</p>
<div class="project-links">
<a href="https://dev-learn-theta.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/sallon.png" alt="Project 1">
<div class="project-overlay">
<h3>Sallon-website (kinyarwanda-version)</h3>
<p>All type of services offered hair cuts</p>
<div class="project-links">
<a href="https://nyogosho-sallon.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/spotify.png" alt="Project 1">
<div class="project-overlay">
<h3>SPotify clone</h3>
<p>spotify clone made in React.js and Tailwind</p>
<div class="project-links">
<a href="https://spotifyclone-tawny-three.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="app">
<div class="project-image">
<img src="./images/game.png" alt="Project 1">
<div class="project-overlay">
<h3>SPotify clone</h3>
<p>spotify clone made in React.js and Tailwind</p>
<div class="project-links">
<a href="https://games-b7mg.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/drinks.png" alt="Project 1">
<div class="project-overlay">
<h3>Drinks animation website</h3>
<p>This web is made using HTML CSS JS it shows the animations</p>
<div class="project-links">
<a href="https://drinks-peach.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/portiilio.png" alt="Project 1">
<div class="project-overlay">
<h3>My 2nd website portifolio design</h3>
<p>my portifolio is made in React.js and Tailwind</p>
<div class="project-links">
<a href="https://hakorimanasharif1.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/codeshark.png" alt="Project 1">
<div class="project-overlay">
<h3>Codeshark </h3>
<p>Made this for my youtube channel name for sharing codes and projects ready to use </p>
<div class="project-links">
<a href="https://codeshark-gamma.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/simple school.png" alt="Project 1">
<div class="project-overlay">
<h3> school website </h3>
<p>simple school website made with html css js improving my web skills duiring l3</p>
<div class="project-links">
<a href="https://school-sdh6.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<div class="project-item" data-category="web">
<div class="project-image">
<img src="./images/simple ecommerce.png" alt="Project 1">
<div class="project-overlay">
<h3>My simple ecommerce</h3>
<p>This simple ecommerce is made during l3 and enhancing my skills in web development.</p>
<div class="project-links">
<a href="https://simple-ecommerce-khaki.vercel.app/" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i>
</a>
<a href="#" class="project-link">
<i class="fas fa-code"></i>
</a>
</div>
</div>
</div>
</div>
<!-- Add 49 more project items following the same structure -->
</div>
<!-- Pagination Controls -->
<div class="pagination-container">
<button class="pagination-btn prev-btn" disabled>
<i class="fas fa-chevron-left"></i>
</button>
<div class="page-numbers">
<button class="page-btn active">1</button>
<button class="page-btn">2</button>
<button class="page-btn">3</button>
<span class="dots">...</span>
<button class="page-btn">8</button>
</div>
<button class="pagination-btn next-btn">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<h2 class="section-title">Get In <span>Touch</span></h2>
<p class="section-subtitle">Let's work together</p>
</div>
<div class="contact-content">
<div class="contact-info">
<h3>Contact Information</h3>
<p>Feel free to reach out to me for any questions or opportunities. I'm always open to discussing new projects, creative ideas or opportunities to be part of your vision.</p>
<div class="info-item">
<i class="fas fa-envelope"></i>
<div class="info-content">
<h4>Email</h4>
<span>hakorimanasharif12agmail.com</span>
</div>
</div>
<div class="info-item">
<i class="fas fa-phone-alt"></i>
<div class="info-content">
<h4>Phone</h4>
<span>+250 0798388890</span>
</div>
</div>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<div class="info-content">
<h4>Location</h4>
<span>Rwanda kigali </span>
</div>
</div>
<div class="social-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-dribbble"></i></a>
</div>
</div>
<div class="contact-form">
<form action="#" method="POST">
<div class="form-group">
<input type="text" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<input type="email" name="email" placeholder="Your Email" required>
</div>
<div class="form-group">
<input type="text" name="subject" placeholder="Subject" required>
</div>
<div class="form-group">
<textarea name="message" placeholder="Your Message" required></textarea>
</div>
<button type="submit" class="btn primary-btn submit-btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<a href="#" class="logo">hksharif</a>
<p>Creating digital experiences that matter.</p>
</div>
<div class="footer-links">
<h4>Quick Links</h4>
<ul>
<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 class="footer-links">
<h4>Services</h4>
<ul>
<li><a href="#">Web Design</a></li>
<li><a href="#">Web Development</a></li>
<li><a href="#">UI/UX Design</a></li>
<li><a href="#">Mobile Apps</a></li>
<li><a href="#">SEO Optimization</a></li>
</ul>
</div>
<div class="footer-newsletter">
<h4>Newsletter</h4>
<p>Subscribe to my newsletter for the latest updates.</p>
<form action="#" method="POST">
<input type="email" placeholder="Your Email" required>
<button type="submit"><i class="fas fa-paper-plane"></i></button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>© <span id="year"></span> Hksharif. All Rights Reserved.</p>
<div class="footer-terms">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
</div>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<a href="#" class="back-to-top">
<i class="fas fa-arrow-up"></i>
</a>
<!-- Success Message Popup -->
<div class="popup-overlay" id="successPopup">
<div class="popup-content">
<div class="popup-icon">
<i class="fas fa-check-circle"></i>
</div>
<h3>Message Sent!</h3>
<p>Your message has been successfully sent to Hksharif.</p>
<button class="btn primary-btn popup-close-btn">OK</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>