-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
573 lines (554 loc) · 26.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- font awesome integration -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="icon" type="image/png" href="./public/favicon.png">
<link rel="stylesheet" href="./src/style.css" />
<link rel="stylesheet" href="./src/main.css" />
<title>Portfolio - Saurav</title>
</head>
<body>
<!-- Starts Header section here -->
<header class="header">
<div class="logo">
<a href="index.html"
><img src="./public/images/img-Saurav.jpg" alt="logo"
/></a>
</div>
<!-- Navbar for wider screens -->
<nav class="navbar">
<ul class="nav-links">
<li><a href="#home" class="activeNav">HOME</a></li>
<li><a href="#aboutMe">ABOUT</a></li>
<li><a href="#skills">SKILLS</a></li>
<li><a href="#journey">JOURNEY</a></li>
<li><a href="#projects">PROJECTS</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
<!-- toggle bars for responsive design -->
<div class="toggle-btn">
<i class="fa-solid fa-bars"></i>
</div>
<!-- navigation links for responsive dropdown -->
<div class="dropdown-menu">
<ul class="nav-links links-dropdown">
<li><a href="#home" class="activeNav">HOME</a></li>
<li><a href="#aboutMe">ABOUT</a></li>
<li><a href="#skills">SKILLS</a></li>
<li><a href="#journey">JOURNEY</a></li>
<li><a href="#projects">PROJECTS</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</div>
</header>
<!-- Ends Header section here -->
<!-- Starts Main Section here -->
<main>
<!-- Starts hero section here -->
<section id="home">
<div class="home-banner flex-center">
<h2>Hello!</h2>
<h1>I'm Saurav.</h1>
<h2 class="h2-green">A <span id="auto-type"></span></h2>
<p class="p-large">
Building Responsive Web Experiences || Aspiring Full-Stack
Developer
</p>
<button class="btn btn-hero flex-center" id="resume">Download CV</button>
</div>
</section>
<!-- Ends hero section here -->
<!-- Starts About me section here -->
<section id="aboutMe">
<div class="blank-height"></div>
<!-- heading for about me -->
<div class="heading-underline">
<h2 class="h2-underline">ABOUT ME</h2>
</div>
<div class="about-me">
<!-- content for about me -->
<div class="about-text flex-center">
<p class="p-large p-dark">
Passionate web development student with a knack for crafting user-friendly interfaces using HTML, CSS, JavaScript, and Tailwind CSS. While I thrive in the front-end world, I'm eager to expand my skillset by diving into backend technologies and transitioning towards full-stack development. I'm driven to contribute my ideas and full potential to the organization's growth, bringing a collaborative spirit and a commitment to continuous learning. <br>
Open to connecting with web development professionals and exploring exciting opportunities.
</p>
</div>
<!-- photo of mine -->
<div class="photo flex-center">
<div class="photo-outer">
<img
src="./public/images/img-Saurav.jpg"
alt=""
width="210px"
/>
</div>
</div>
<!-- personal details -->
<div class="info flex-center">
<div class="info-list">
<h4>Personal Infos:</h4>
<ul>
<li><span class="span-info">Name:</span>Kumar Saurav</li>
<li><span class="span-info">Age:</span>24</li>
<li><span class="span-info">Address:</span>Bihar</li>
<li><span class="span-info">Phone:</span>
<a href="tel:+917870989027">7870989027</a>
</li>
<li><span class="span-info">Email:</span>
<a href="mailto:k7saurav.me@gmail.com">k7saurav.me@gmail.com</a>
</li>
<li><span class="span-info">Language:</span>Hindi, English</li>
<li><span class="span-info">Nationality:</span>Indian</li>
</ul>
</div>
</div>
</div>
<div class="blank-height-2"></div>
</section>
<!-- Ends About me section here -->
<!-- Starts skills section here -->
<section id="skills">
<div class="blank-height-2"></div>
<div class="heading-underline">
<h2 class="h2-underline" id="h2-skill">SKILLS</h2>
</div>
<div class="skills-container">
<!-- buttons for tab view -->
<div class="tab-buttons">
<div class="tab-btn-border-responsive">
<button class="tab-btn activeTab" id="btn-skill">Skills</button>
<button class="tab-btn" id="btn-cert">Certification</button>
</div>
</div>
<!-- content tab for tab view -->
<div class="tab-contents">
<!-- skill contents starts -->
<div id="tab-skill">
<div class="tab-skills">
<!-- skill html -->
<div class="skill">
<div class="skill-content">
<p>HTML</p>
<p>84%</p>
</div>
<div class="progress-bar">
<div id="html-bar" class="the-bar" style="width: 84%;"></div>
</div>
</div>
<!-- skill css -->
<div class="skill">
<div class="skill-content">
<p>CSS</p>
<p>70%</p>
</div>
<div class="progress-bar">
<div id="css-bar" class="the-bar" style="width: 70%;"></div>
</div>
</div>
<!-- skill javascript -->
<div class="skill">
<div class="skill-content">
<p>JAVASCRIPT</p>
<p>75%</p>
</div>
<div class="progress-bar">
<div id="js-bar" class="the-bar" style="width: 75%;"></div>
</div>
</div>
<!-- skill tailwind -->
<div class="skill">
<div class="skill-content">
<p>TAILWIND CSS</p>
<p>54%</p>
</div>
<div class="progress-bar">
<div id="tailwind-bar" class="the-bar" style="width: 54%;"></div>
</div>
</div>
<!-- skill react -->
<div class="skill">
<div class="skill-content">
<p>REACT JS</p>
<p>20%</p>
</div>
<div class="progress-bar">
<div id="react-bar" class="the-bar" style="width: 20%;"></div>
</div>
</div>
<!-- skill java -->
<div class="skill">
<div class="skill-content">
<p>JAVA</p>
<p>66%</p>
</div>
<div class="progress-bar">
<div id="java-bar" class="the-bar" style="width: 66%;"></div>
</div>
</div>
</div>
</div>
<!-- skill contents ends -->
<!-- certification contents starts -->
<div id="tab-cert" style="display: none;">
<div class="tab-certificate">
<!-- certificate 1 -->
<div class="certificate">
<figure class="img-hover">
<img src="./public/images/coursera-html-css.png" />
<figcaption>
<div class="img-hover-text">
<h4>Coursera</h4>
<p class=".p-small">HTML and CSS in Depth by Meta.</p>
<a class="btn btn-img-hover a-img-hover" href="https://coursera.org/verify/4HMZBYCTTBQC" target="_blank">Verify</a>
</div>
</figcaption>
</figure>
</div>
<!-- certificate 2 -->
<div class="certificate">
<figure class="img-hover">
<img src="./public/images/coursera-frontend.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Coursera</h4>
<p class=".p-small">Introduction to Front-end Development by Meta.</p>
<a class="btn btn-img-hover a-img-hover" href="https://coursera.org/verify/2NMTL2DRC726" target="_blank">Verify</a>
</div>
</figcaption>
</figure>
</div>
<!-- certificate 3 -->
<div class="certificate">
<figure class="img-hover">
<img src="./public/images/coursera-javascript.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Coursera</h4>
<p class=".p-small">Programming with JavaScript by Meta.</p>
<a class="btn btn-img-hover a-img-hover" href="https://coursera.org/verify/X3VS8BNQQS9Q" target="_blank">Verify</a>
</div>
</figcaption>
</figure>
</div>
</div>
</div>
<!-- certification contents ends -->
</div>
</div>
<div class="blank-height-2"></div>
</section>
<!-- Ends skills section here -->
<!-- Starts Journey section here -->
<section id="journey">
<div class="blank-height-2"></div>
<div class="heading-underline">
<h2 class="h2-underline">JOURNEY</h2>
</div>
<div class="journey-container">
<!-- Experience starts here -->
<div class="experience-part education-part">
<div class="journey-h2">
<h2>Experience</h2>
</div>
<div class="education-details">
<div class="education experience">
<h4>WordPress Developer</h4>
<p class="p-green">@ CodingExpo Technology</p>
<p class="p-timeline">Jul 2022 - Oct 2022</p>
<p class="p-small">Worked as an Intern WordPress Developer at CodingExpo Technology Pvt. Ldt.<p>
</div>
<div class="education experience">
<h4>Heading</h4>
<p class="p-green">@ Company Name</p>
<p class="p-timeline">Period</p>
<p class="p-small">Worked as.<p>
</div>
</div>
</div>
<!-- Education starts here -->
<div class="education-part">
<div class="journey-h2">
<h2>Education</h2>
</div>
<div class="education-details">
<div class="education">
<h4>MCA</h4>
<p class="p-green">Lovely Professional University Online</p>
<p class="p-timeline">2025</p>
<p class="p-small">Field - Web development.<p>
</div>
<div class="education">
<h4>B.Sc - IT</h4>
<p class="p-green">TM Bhagalpur University</p>
<p class="p-timeline">2021</p>
<!-- <p class="p-small">Worked as.<p> -->
</div>
<div class="education">
<h4>Intermediate</h4>
<p class="p-green">BSEB Patna</p>
<p class="p-timeline">2017</p>
<p class="p-small">Maths, Physics, Chemistry.<p>
</div>
<div class="education">
<h4>Matriculation</h4>
<p class="p-green">BSEB Patna</p>
<p class="p-timeline">2015</p>
<p class="p-small">All General Subjects.<p>
</div>
</div>
</div>
</div>
<div class="blank-height-2"></div>
</section>
<!-- Ends Journey section here -->
<!-- Starts Projects section here -->
<section id="projects">
<div class="blank-height-2"></div>
<div class="heading-underline">
<h2 class="h2-underline">PROJECTS</h2>
</div>
<div class="project-container">
<!-- project 1 - Weather -->
<div class="project">
<figure class="img-hover">
<img src="./public/images/weather.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Weather</h4>
<p class=".p-small">Simple weather fetch by city name.</p>
<button onclick="showPopup('popup-weather')"
class="btn btn-img-hover flex-center">
View</button>
<!-- popup container code - weather app -->
<div class="popup-box flex-center" id="popup-weather" style="display: none;">
<div class="position-iframe">
<iframe src="./project-work/weather-app/weather.html" frameborder="0"></iframe>
<button class="close-popup">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
</div>
</figcaption>
</figure>
</div>
<!-- project 2 - Digital Clock -->
<div class="project">
<figure class="img-hover">
<img src="./public/images/clock.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Digital Clock</h4>
<p class=".p-small">Digital clock with Dark and Light mode.</p>
<button onclick="showPopup('popup-clock')"
class="btn btn-img-hover flex-center">View</button>
<!-- popup container code - Digital Clock -->
<div class="popup-box flex-center" id="popup-clock" style="display: none;">
<div class="position-iframe">
<iframe src="./project-work/digital-clock/clock.html" frameborder="0"></iframe>
<button class="close-popup">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
</div>
</figcaption>
</figure>
</div>
<!-- project 3 - Calculator -->
<div class="project">
<figure class="img-hover">
<img src="./public/images/calculator.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Calculator</h4>
<p class=".p-small">Simple calculator with arithmetic.</p>
<button onclick="showPopup('popup-calculator')"
class="btn btn-img-hover flex-center">View</button>
<!-- popup container code - Calculator -->
<div class="popup-box flex-center" id="popup-calculator" style="display: none;">
<div class="position-iframe">
<iframe src="./project-work/calculator/calculator.html" frameborder="0"></iframe>
<button class="close-popup">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
</div>
</figcaption>
</figure>
</div>
<!-- project 4 - Timer and Stopwatch -->
<div class="project">
<figure class="img-hover">
<img src="./public/images/timer-stopwatch.png"/>
<figcaption>
<div class="img-hover-text">
<h4>Timer & Stopwatch</h4>
<p class=".p-small">Timer and Stopwatch with basic functionality.</p>
<div class="div-two-btn">
<button onclick="showPopup('popup-timer')"
class="btn btn-img-hover flex-center">View</button>
<!-- popup container code - Timer and Stopwatch -->
<div class="popup-box flex-center" id="popup-timer" style="display: none;">
<div class="position-iframe">
<iframe src="./project-work/timer/timer.html" frameborder="0"></iframe>
<button class="close-popup">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
<button onclick="showPopup('popup-stopwatch')"
class="btn btn-img-hover flex-center">View</button>
<!-- popup container code - weather app -->
<div class="popup-box flex-center" id="popup-stopwatch" style="display: none;">
<div class="position-iframe">
<iframe src="./project-work/stopwatch/stopwatch.html" frameborder="0"></iframe>
<button class="close-popup">
<i class="fa-solid fa-xmark"></i>
</button>
</div>
</div>
</div>
</div>
</figcaption>
</figure>
</div>
</div>
<div class="blank-height-2"></div>
</section>
<!-- Ends Projects section here -->
<!-- Starts Contact section here -->
<section id="contact">
<div class="blank-height-2"></div>
<div class="heading-underline">
<h2 class="h2-underline">CONTACT</h2>
</div>
<div class="contact-container">
<!-- Reach to us or address part -->
<div class="reach-to-us">
<h4>Reach to Me</h4>
<!-- address part: address -->
<div class="address">
<div class="icon">
<img src="./public/icons/location.svg" alt="Location Icon" />
</div>
<div class="locatn-ph-email">
<p class="p-green">Address:</p>
<p>Tarapur, Munger (Bihar) - 813321</p>
</div>
</div>
<!-- address part: Phone number -->
<div class="address">
<div class="icon">
<img src="./public/icons/phone.svg" alt="Phone Icon" />
</div>
<div class="locatn-ph-email">
<p class="p-green">Phone:</p>
<a href="tel:+917870989027">7870989027</a>
</div>
</div>
<!-- address part: email id -->
<div class="address">
<div class="icon">
<img src="./public/icons/email.svg" alt="Email Icon" />
</div>
<div class="locatn-ph-email">
<p class="p-green">Email:</p>
<a href="mailto:k7saurav.me@gmail.com">k7saurav.me@gmail.com</a>
</div>
</div>
<!-- address part: email id -->
<div class="address">
<div class="icon">
<img src="./public/icons/social.svg" alt="Social Icons" />
</div>
<div class="locatn-ph-email">
<p class="p-green">Social Networks:</p>
<div class="social">
<a href="https://github.com/k7saurav" target="_blank" class="flex-center"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/k7saurav" target="_blank" class="flex-center"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://t.me/k7saurav" target="_blank" class="flex-center"><i class="fa-brands fa-telegram"></i></a>
<a href="https://wa.me/917870989027" target="_blank" class="flex-center"><i class="fa-brands fa-whatsapp"></i></a>
</div>
</div>
</div>
</div>
<!-- Contact form part -->
<div class="get-in-touch">
<h4>Get in Touch</h4>
<div class="form">
<form>
<input
type="text"
class="fill"
name="Name"
id="name"
placeholder="Full Name"
required
/>
<input
type="email"
class="fill"
name="Email"
id="email"
placeholder="Email"
required
/>
<input
type="tel"
class="fill"
name="Phone"
id="phone"
placeholder="Phone"
required
/>
<textarea
name="Message"
id="message"
class="fill msg"
rows="4"
maxlength="400"
placeholder="Your message"
required
></textarea>
<div class="sending-msg">
<button type="submit" class="btn flex-center" id="btn-form">Send</button>
<p class="p-large" id="user-msg"></p>
</div>
</form>
</div>
</div>
</div>
<div class="blank-height-2"></div>
</section>
<!-- Ends Contact section here -->
</main>
<!-- Ends Main Section here -->
<!-- Starts Footer Section here -->
<footer>
<div id="footer">
<div id="copyright">
<p class="p-small p-dark">
© <span id="year"></span> Copyright: <a href="index.html">k7Saurav</a>
</p>
</div>
</div>
</footer>
<!-- Ends Footer Section here -->
<!-- cdn script for typing text animation -->
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script src="./src/app.js"></script>
</body>
</html>