-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
795 lines (708 loc) Β· 26.7 KB
/
index.html
File metadata and controls
795 lines (708 loc) Β· 26.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
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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Krish sah - Portfolio</title>
<style>
* {
margin: 0;2q
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
/* Header Section */
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.logo {
font-size: 1.8rem;
font-weight: bold;
color: white;
text-decoration: none;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.nav-links a:hover {
color: #ffd700;
transform: translateY(-2px);
}
.nav-links a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #ffd700;
transition: width 0.3s ease;
}
.nav-links a:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding-top: 80px;
}
.hero-content h1 {
font-size: 4rem;
margin-bottom: 1rem;
animation: fadeInUp 1s ease-out;
}
.hero-content .subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-content .description {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto 2rem;
animation: fadeInUp 1s ease-out 0.6s both;
}
.cta-button {
background: #ffd700;
color: #333;
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
animation: fadeInUp 1s ease-out 0.9s both;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}
/* About Section */
.about {
padding: 5rem 0;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
position: relative;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 2px;
}
.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 4rem;
align-items: center;
}
.about-image {
text-align: center;
}
.about-img {
width: 300px;
height: 300px;
margin-bottom:20px;
border-radius:50%;
object-fit: cover;
border: 5px solid #272728;
box-shadow: 0 20px 40px rgba(43, 42, 42, 0.1);
}
.about-text p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: #666;
line-height: 1.8;
}
/* Skills Section */
.skills {
padding: 5rem 0;
background: white;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.skill-item {
background: #f8f9fa;
padding: 2rem;
border-radius: 10px;
text-align: center;
transition: all 0.3s ease;
border-left: 5px solid #667eea;
}
.skill-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.skill-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: #667eea;
}
.skill-item h3 {
margin-bottom: 1rem;
color: #333;
}
.skill-progress {
background: #e9ecef;
height: 10px;
border-radius: 5px;
overflow: hidden;
margin-top: 1rem;
}
.skill-progress-bar {
height: 100%;
background: linear-gradient(135deg, #667eea, #764ba2);
border-radius: 5px;
transition: width 2s ease-in-out;
}
/* Projects Section */
.projects {
padding: 5rem 0;
background: #f8f9fa;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.project-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.project-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.project-image {
height: 200px;
background: linear-gradient(135deg, #667eea, #764ba2);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 3rem;
}
.project-content {
padding: 2rem;
}
.project-content h3 {
margin-bottom: 1rem;
color: #333;
}
.project-content p {
color: #666;
margin-bottom: 1.5rem;
}
.project-links {
display: flex;
gap: 1rem;
}
.project-link {
background: #667eea;
color: white;
padding: 0.5rem 1rem;
border-radius: 5px;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s ease;
}
.project-link:hover {
background: #764ba2;
transform: translateY(-2px);
}
/* Resume Section */
.resume {
padding: 5rem 0;
background: white;
text-align: center;
}
.resume-content {
max-width: 600px;
margin: 0 auto;
}
.resume-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #666;
}
.resume-button {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: bold;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
}
.resume-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}
/* Contact Section */
.contact {
padding: 5rem 0;
background: #f8f9fa;
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
margin-top: 3rem;
}
.contact-info {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-item {
display: flex;
align-items: center;
margin-bottom: 2rem;
}
.contact-icon {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 1rem;
font-size: 1.2rem;
}
.contact-form {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px 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: 500;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e9ecef;
border-radius: 8px;
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(135deg, #667eea, #764ba2);
color: white;
padding: 1rem 2rem;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
}
.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
/* Footer Section */
footer {
background: #333;
color: white;
text-align: center;
padding: 3rem 0 1rem;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
}
.social-link {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-link:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.footer-text {
border-top: 1px solid #555;
padding-top: 2rem;
color: #ccc;
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeInUp 1s ease-out;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero-content h1 {
font-size: 2.5rem;
}
.about-content {
grid-template-columns: 1fr;
text-align: center;
}
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.social-links {
gap: 1rem;
}
.container {
padding: 0 1rem;
}
}
@media (max-width: 480px) {
.hero-content h1 {
font-size: 2rem;
}
.section-title {
font-size: 2rem;
}
.about-img {
width: 200px;
height: 200px;
}
}
</style>
</head>
<body>
<!-- header section for - nav-links -->
<header>
<nav>
<a href="#home" class="logo">Krish sah</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="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section / mid section - for my self short intro -->
<section id="home" class="hero">
<div class="hero-content">
<h1>Krish Sah</h1>
<p class="subtitle">Web developer</p>
<p class="description">A Front-End Developer is responsible for creating engaging, user-friendly web interfaces using modern web technologies. They work closely with designers and back-end developers to turn visual designs into interactive, responsive, and performant websites or web applications.</p>
<a href="#contact" class="cta-button">Get In Touch</a>
</div>
</section>
<!-- About Section - for me and my passionate about my tech field web developer -->
<section id="about" class="about">
<div class="container">
<h2 class="section-title">About Me</h2>
<div class="about-content">
<div class="about-image">
<img src="krish3-image.jpeg" alt="" class="about-img">
</div>
<div class="about-text">
<p>Hello! I'm Krish sah, a passionate Web Developer with over less than 1 years of experience in creating digital solutions that make a difference. I love turning complex problems into simple, beautiful designs.</p>
<p>My expertise spans across modern web technologies including React, Node.js, I'm always eager to learn new technologies and take on challenging projects that push the boundaries of what's possible.</p>
<p>When I'm not coding, you can find me exploring new design trends, contributing to open-source projects, or enjoying a good cup of coffee while planning my next creative endeavor.</p>
</div>
</div>
</div>
</section>
<!-- Skills Section - what i learned right the time -->
<section id="skills" class="skills">
<div class="container">
<h2 class="section-title">My Skills</h2>
<div class="skills-grid">
<div class="skill-item">
<div class="skill-icon"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFBDpP5C5t_t8FjbMu-rjqndyjCmaoKMNTjA&s" alt=""height="210px"width="210px"></div>
<h3>HTML</h3>
<p>Hyper text markup Language</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 100%;"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-icon"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRTwzDfejQjrtyuTLtbhl78_QUBEtG86gBq7cIkjmtkpMgUuC7A6V9-l-UmgsX0mcz6wFk&usqp=CAU" alt=""height="210px"width="210px"></div>
<h3>CSS</h3>
<p>Cast style scading</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 100%;"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-icon"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHihIzOkBdMqtxVw0DwFs3bMfGXkA91iifayL3sxTyhJHTMWK_D0A_BQkSYQ1gO49iUNk&usqp=CAU" alt=""height="210px"width="210px"></div>
<h3>Javacript</h3>
<p>low-level-programing language</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 80%;"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-icon"><img src="https://images.icon-icons.com/2108/PNG/512/react_icon_130845.png" alt=""height="210px"width="210px"></div>
<h3>React</h3>
<p>React is a javascript library</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 70%;"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-icon"><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_UUFIJtVAwXQo3ICnfQJy3BrAX8os-HChbyxvT2_H6xUL3ekkr8oxVdNkLSHTsxn6pTo&usqp=CAU" alt=""height="210px"width="210px"></div>
<h3>Node js</h3>
<p>Node.js is a JavaScript runtime environment- to build server-side and networking</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 60%;"></div>
</div>
</div>
<div class="skill-item">
<div class="skill-icon"><img src="https://cdn.worldvectorlogo.com/logos/mongodb-icon-1.svg" alt=""height="210px"width="210px"></div>
<h3>MongoDB</h3>
<p>MongoDB is a popular, open-source, NoSQL database that uses a document-oriented model for storing data</p>
<div class="skill-progress">
<div class="skill-progress-bar" style="width: 55%;"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section - What i made mostly by use of html and css and small use of javascript -->
<section id="projects" class="projects">
<div class="container">
<h2 class="section-title">My Projects</h2>
<div class="projects-grid">
<div class="project-card">
<div class="project-image"><img src="https://st2.depositphotos.com/1688079/5651/i/450/depositphotos_56511431-stock-photo-blog-glossy-blue-reflected-square.jpg" alt=""height="250px"width="380px"></div>
<div class="project-content">
<h3>CSS-BLOG-PROJECT</h3>
<p>CSS BLOG PROJECT is made by using HTML and CSS </p>
<div class="project-links">
<a href="/css blog project/index.html" class="project-link">Live Demo</a>
<a href="#" class="project-link">GitHub</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image"><img src="https://www.freeiconspng.com/uploads/color-icon-18.jpg" alt=""height="250px"width="380px"></div>
<div class="project-content">
<h3>BG-COLOR-CHANGER</h3>
<p>BG-color it is made by html,css,and small use of javascript-basically its color changes when we click a button </p>
<div class="project-links">
<a href="/bgcolor.html" class="project-link">Live Demo</a>
<a href="#" class="project-link">GitHub</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image"> <img src="https://raw.githubusercontent.com/loveBabbar/CodehelpYTWebDev/5f10c3122a1081eed273bdf54a733d5302540105/html_CSS_JS/lecture33/images/StudySyn.svg" alt=""height="190px"width="350px"></div>
<div class="project-content">
<h3>FRONTENED-SYNC-PROJECT</h3>
<p>A frontend sync project is made by html and css focuses on maintaining consistency and smooth, real-time data flow between the user interface</p>
<div class="project-links">
<a href="/FRONTENED-SYNC-PROJECT/index.html" class="project-link">Live Demo</a>
<a href="#" class="project-link">GitHub</a>
</div>
</div>
</div>
<div class="project-card">
<div class="project-image"><img src="https://m.media-amazon.com/images/I/31n8463-CdL.jpg" alt=""height="250px"width="380px"></div>
<div class="project-content">
<h3>PROJECT FOR-SALE</h3>
<p>Sale project for sale a electronic and cloths and home items by use of html</p>
<div class="project-links">
<a href="/Project for SALE.html" class="project-link">Live Demo</a>
<a href="#" class="project-link">GitHub</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section - All detail about me -->
<section id="resume" class="resume">
<div class="container">
<h2 class="section-title">Resume</h2>
<div class="resume-content">
<p>Interested in learning more about my experience and qualifications? Download my complete resume to see my full professional background, education, and achievements.</p>
<a href="https://drive.google.com/file/d/1oiC00fRG2bb1VY176MoIL1f3o48LWMKU/view?usp=drivesdk" class="resume-button" download>Download Resume</a>
</div>
</div>
</section>
<!-- Contact Section - further you can contact me -->
<section id="contact" class="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">π§</div>
<div>
<h4>Email</h4>
<p>sahkrish1406@gmail.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">π±</div>
<div>
<h4>Phone</h4>
<p>+917701881038</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">π</div>
<div>
<h4>Location</h4>
<p>INDIA,NEW DELHI</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">πΌ</div>
<div>
<h4>LinkedIn</h4>
<p>www.linkedin.com/in/krish-sah-b6346732a</p>
</div>
</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 placeholder="@example.com">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" 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 Section - for some links and copyright print -->
<footer>
<div class="footer-content">
<div class="social-links">
<a href="#" class="social-link">π</a>
<a href="#" class="social-link">π¦</a>
<a href="#" class="social-link">πΌ</a>
<a href="#" class="social-link">π·</a>
<a href="#" class="social-link">π§</a>
</div>
<div class="footer-text">
<p>© 2025 Krish sah. All rights reserved. Built with β€οΈ using HTML & CSS only.</p>
</div>
</div>
</footer>
</body>
</html>