-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
660 lines (628 loc) · 21.8 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shivam's Portfolio</title>
<link href="public\icon.png" rel="icon" type="image/gif" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Back to top button styling-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap"
rel="stylesheet"
/>
<!-- /Back to top button styling-->
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<script
src="https://kit.fontawesome.com/9fa51d37bd.js"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="splash-screen">
<section class="splash-content">
<video src="public/smoke1.mp4" autoplay muted></video>
<h1>
<span>S</span>
<span>H</span>
<span>I</span>
<span>V</span>
<span>A</span>
<span>M</span>
<br />
<span>G</span>
<span>U</span>
<span>P</span>
<span>T</span>
<span>A</span>
</h1>
</section>
</div>
<a id="button"></a>
<div class="header" id="home">
<div class="logo">
<h2>Shivam</h2>
<h2>Shivam</h2>
</div>
<div class="__container">
<div class="navbar2">
<div class="header2">
<ul class="menu2">
<li data-section="home">Home</li>
<li data-section="about">About</li>
<li data-section="project">Project</li>
<li data-section="skills">Skills</li>
<li data-section="contact">Contact</li>
</ul>
</div>
</div>
</div>
</div>
<div id="header-container">
<div class="content">
<h1>Hi, I'm Shivam Gupta</h1>
<span id="element"></span>
<hr />
<p>
I am deeply passionate about technology and its advancements. The
ubiquitous presence of computers only serves to intensify my
curiosity. I am dedicated, punctual, and value being a dependable team
player.
</p>
<div class="social_media">
<div>
<a
href="https://www.linkedin.com/in/the-shivam-gupta"
target="_blank"
><i class="fa-brands fa-linkedin fa-bounce button"></i
></a>
<a href="https://github.com/the-shivam-gupta" target="_blank"
><i class="fa-brands fa-github fa-beat button"></i
></a>
</div>
<div class="resume-container">
<a href="./public/Shivamresume.pdf" target="_blank">
<div class="resume">
<div class="text">Resume</div>
</div>
</a>
</div>
</div>
</div>
<div class="card">
<div class="__content">
<div class="front">
<img src="public/image.png" alt="photo" />
</div>
<div class="back">
<h1>HOBBIES</h1>
<ul>
<li>Fitness freak</li>
<br />
<li>Travelling</li>
<br />
<li>Reading</li>
<br />
<li>Socializing</li>
<br />
</ul>
</div>
</div>
</div>
</div>
<div class="container reveal" id="about">
<div class="about-container">
<div class="about-img">
<img src="./public/image.png" alt="photo" />
</div>
<div class="about-content">
<h1>A Bit About Me</h1>
<br />
<p>
I'm currently in my 4th year, pursuing a Computer Science degree at
Atharva College in Mumbai. As a developer, I've collaborated with
teams to create functional applications and write clean,
maintainable code, gaining valuable experience in web development. I
also enjoy contributing to open-source projects and, in my free
time, I relax and uplift my mood through music.
</p>
</div>
</div>
</div>
<!-- Scroll Content -->
<section class="wave-container">
<h1 class="wave">
<span style="--i: 1">S</span>
<span style="--i: 2">c</span>
<span style="--i: 3">r</span>
<span style="--i: 4">o</span>
<span style="--i: 5">l</span>
<span style="--i: 6">l</span>
<span></span>
<span style="--i: 7">D</span>
<span style="--i: 8">o</span>
<span style="--i: 9">w</span>
<span style="--i: 10">n</span>
<br />
<div class="arrow">
<span></span>
<span></span>
</div>
</h1>
</section>
<section id="project">
<div class="container reveal">
<div class="projects">
<span class="letter">P</span>
<span class="letter">r</span>
<span class="letter">o</span>
<span class="letter">j</span>
<span class="letter">e</span>
<span class="letter">c</span>
<span class="letter">t</span>
<span class="letter">s</span>
</div>
<div class="text-box">
<div>
<a
target="_blank"
href="https://github.com/ShubhamKhale/labourServices"
>
<img
src="public/labourService_P1.jpg"
alt="image"
onmouseover="hoverImage2(this)"
onmouseout="unhoverImage2(this)"
/>
</a>
</div>
<div class="project-content">
<h1>Labour Service</h1>
<p>
Labour service is a vital component of countless industries and
sectors, serving as the backbone of productivity and progress. The
Labor Services app <span>connects</span> job seekers to employers.
It offers trustworthy and convenient <span>services</span>,
allowing users to recruit labourers and provide feedback. Users
can provide and access <span>reviews and ratings</span>, helping
build a community of trust within the labour services ecosystem.
</p>
<div class="project-links">
<a
href="https://github.com/ShubhamKhale/labourServices"
target="_blank"
><i class="fa-brands fa-github fa-beat"></i
></a>
<button class="tags">React Js</button>
<button class="tags">Typescript</button>
<button class="tags">Ionic</button>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container reveal">
<div class="text-container">
<div class="text-box">
<a target="_blank" href="https://github.com/PriyansuMaurya/MedGuide">
<img
src="public/MedGuide_1 Project.png"
alt="image"
onmouseover="hoverImage3(this)"
onmouseout="unhoverImage3(this)"
/>
</a>
<div class="project-content">
<h1>MedGuide</h1>
<p>
Medical diagnosis systems are advanced computer programs that
utilize cutting-edge technologies such as
<span>machine learning</span> and
<span>natural language processing</span> to assist medical
practitioners in effectively diagnosing diseases. These
innovative systems not only enhance the precision and speed of
diagnosis but also offer doctors valuable
<span>insights and information</span> to help them make informed
decisions regarding patient treatment.
</p>
<div class="project-links">
<a
href="https://github.com/PriyansuMaurya/MedGuide"
target="_blank"
><i class="fa-brands fa-github fa-beat"></i
></a>
<button class="tags">Python</button>
<button class="tags">Flask</button>
<button class="tags">Tailwind</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container reveal">
<div class="text-container">
<div class="text-box">
<a target="_blank" href="https://github.com/the-shivam-gupta/HMS">
<img
src="public/HSM_P2.jpg"
alt="image"
onmouseover="hoverImage1(this)"
onmouseout="unhoverImage1(this)"
/>
</a>
<div class="project-content">
<h1>HMS</h1>
<p>
The Hospital Management System is a platform designed to
<span>enhance</span>
healthcare facilities. This system saves time and improves
efficiency by providing healthcare professionals with quick
access to <span>patient information</span>, leading to faster
diagnoses and treatment. The Hospital Management System benefits
<span>both</span> patients and healthcare professionals by
improving the quality of care.
</p>
<div class="project-links">
<a
href="https://github.com/the-shivam-gupta/HMS"
target="_blank"
><i class="fa-brands fa-github fa-beat"></i
></a>
<button class="tags">Python</button>
<button class="tags">Tkinter</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container reveal">
<div class="text-container">
<div class="text-box">
<a target="_blank" href="https://the-shivam-gupta.github.io/tailwind-clone/">
<img
src="public/tailwind-clone-1.png"
alt="image"
onmouseover="hoverImage4(this)"
onmouseout="unhoverImage4(this)"
/>
</a>
<div class="project-content">
<h1>Tailwind Clone</h1>
<p>
Making a replica of a website named as "<span
>Tailwind Clone</span
>" to get better at designing the front part of websites. It's a
<span>practice</span> project where I'm using Tailwind CSS. The
site has only one page and doesn't link to any other pages, it's
just for practicing and <span>improving</span> my skills.
</p>
<div class="project-links">
<a
href="https://github.com/the-shivam-gupta/tailwind-clone"
target="_blank"
><i class="fa-brands fa-github fa-beat"></i
></a>
<button class="tags">HTML</button>
<button class="tags">Tailwind</button>
<button class="tags">JS</button>
</div>
</div>
</div>
</div>
</div>
</section>
<hr />
<br />
<div class="skills-container" id="skills">
<div class="container reveal">
<div class="skills">
<div class="skills-header">
<span class="letter">S</span>
<span class="letter">k</span>
<span class="letter">i</span>
<span class="letter">l</span>
<span class="letter">l</span>
<span class="letter">s</span>
</div>
<div class="coding-languages">
<ul>
<li>
<img src="./public/html.png" width="80px" alt="HTML" /><span
>HTML</span
>
</li>
<li>
<img src="./public/css-3.png" width="80px" alt="CSS" /><span
>CSS</span
>
</li>
<li>
<img src="./public/python.png" width="80px" alt="PYTHON" /><span
>PYTHON</span
>
</li>
<li>
<img src="./public/mysql.png" width="80px" alt="MySQL" /><span
>MySQL</span
>
</li>
<li>
<img src="./public/github.png" width="80px" alt="GITHUB" /><span
>GITHUB</span
>
</li>
<li>
<img
src="./public/physics.png"
width="80px"
alt="REACTJS"
/><span>REACT JS</span>
</li>
<li>
<img src="./public/c-.png" width="80px" alt="C++" /><span
>C++</span
>
</li>
<li>
<img
src="./public/bootstrap.png"
width="80px"
alt="BOOTSTRAP"
/><span>BOOTSTRAP</span>
</li>
<li>
<img
src="./public/javascript.png"
width="75px"
alt="JAVASCRIPT"
/><span>JS</span>
</li>
<li>
<img src="./public/html.png" width="80px" alt="HTML" /><span
>HTML</span
>
</li>
<li>
<img src="./public/css-3.png" width="80px" alt="CSS" /><span
>CSS</span
>
</li>
<li>
<img src="./public/python.png" width="80px" alt="PYTHON" /><span
>PYTHON</span
>
</li>
<li>
<img src="./public/mysql.png" width="80px" alt="MySQL" /><span
>MySQL</span
>
</li>
<li>
<img src="./public/github.png" width="80px" alt="GITHUB" /><span
>GITHUB</span
>
</li>
<li>
<img
src="./public/physics.png"
width="80px"
alt="REACTJS"
/><span>REACT JS</span>
</li>
<li>
<img src="./public/c-.png" width="80px" alt="C++" /><span
>C++</span
>
</li>
<li>
<img
src="./public/bootstrap.png"
width="80px"
alt="BOOTSTRAP"
/><span>BOOTSTRAP</span>
</li>
<li>
<img
src="./public/javascript.png"
width="75px"
alt="JAVASCRIPT"
/><span>JS</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="contact-container" id="contact">
<div class="container reveal">
<main>
<div class="title">
<span class="letter">C</span>
<span class="letter">o</span>
<span class="letter">n</span>
<span class="letter">t</span>
<span class="letter">a</span>
<span class="letter">c</span>
<span class="letter">t</span>
</div>
<div class="alert"></div>
<form action="" method="" class="form" id="myForm" autocomplete="off">
<div class="input-group">
<input
type="text"
name="first_name"
id="first-name"
placeholder="First name"
autocomplete="off"
/>
<label for="first-name">First name</label>
</div>
<div class="input-group">
<input
type="text"
name="last_name"
id="last-name"
placeholder="Last Name"
autocomplete="off"
/>
<label for="last-name">Last name</label>
</div>
<div class="input-group">
<input
type="email"
name="e-mail"
id="e-mail"
placeholder="e-mail"
autocomplete="off"
/>
<label for="e-mail">Email</label>
</div>
<div class="textarea-group">
<textarea
name="message"
id="message"
rows="5"
placeholder="Message"
autocomplete="off"
></textarea>
<label for="message">Message</label>
</div>
<div class="submit-btn">
<button type="submit" id="showAlert">Send</button>
</div>
</form>
</main>
</div>
</div>
<hr />
<footer class="footer-container">
<div class="footer-content">Made with ❤️ by Shivam</div>
<div class="footer-icons">
<a href="https://github.com/the-shivam-gupta" target="_blank"
><i class="fa-brands fa-github fa-beat-fade"></i
></a>
<a href="https://twitter.com/ShivamGupt97925" target="_blank"
><i class="fa-brands fa-square-x-twitter fa-beat-fade"></i
></a>
<a href="https://www.linkedin.com/in/the-shivam-gupta" target="_blank"
><i class="fa-brands fa-linkedin-in fa-beat-fade"></i
></a>
<a href="mailto:shivamgupta02022002@gmail.com" target="_blank"
><i class="fa-solid fa-envelope fa-beat-fade"></i
></a>
</div>
</footer>
<!-- Load library from the CDN -->
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed("#element", {
strings: ["Frontend Engineer", "Web Designer", "Frontend Developer"],
typeSpeed: 50,
backSpeed: 50,
cursorChar: "|",
loop: true,
});
// project image section
function hoverImage1(element) {
element.src = "public/HSM_registration_img.jpg";
}
function unhoverImage1(element) {
element.src = "public/HSM_P2.jpg";
}
function hoverImage2(element) {
element.src = "public/labourService_about_img.jpg";
}
function unhoverImage2(element) {
element.src = "public/labourService_P1.jpg";
}
function hoverImage3(element) {
element.src = "public/MedGuide_2 Project.png";
}
function unhoverImage3(element) {
element.src = "public/MedGuide_1 Project.png";
}
function hoverImage4(element) {
element.src = "public/tailwind-clone-2.png";
}
function unhoverImage4(element) {
element.src = "public/tailwind-clone-1.png";
}
// JavaScript to hide the splash screen when the page is fully loaded
document.addEventListener("DOMContentLoaded", function () {
var splashScreen = document.getElementById("splash-screen");
if (splashScreen) {
var delay = 8000;
setTimeout(function () {
splashScreen.classList.add("hidden");
setTimeout(function () {
splashScreen.style.display = "none";
}, 1000);
}, delay);
}
});
// Contact form submission
document.addEventListener("DOMContentLoaded", function () {
const form = document.getElementById("myForm");
const alertDialog = document.querySelector(".alert");
form.addEventListener("submit", function (event) {
event.preventDefault();
const firstName = document.getElementById("first-name").value.trim();
const lastName = document.getElementById("last-name").value.trim();
const email = document.getElementById("e-mail").value.trim();
const message = document.getElementById("message").value.trim();
// Regular expression for a valid email address format ending with gmail.com
const emailRegex = /^[a-zA-Z0-9._-]+@gmail\.com$/;
if (firstName === "" || lastName === "" || message === "") {
alertDialog.style.backgroundColor = "red";
alertDialog.style.color = "white";
alertDialog.style.display = "flex";
alertDialog.innerHTML =
"Ensure that all fields are filled out accurately.";
} else if (!email.match(emailRegex)) {
alertDialog.style.backgroundColor = "red";
alertDialog.style.color = "white";
alertDialog.style.display = "flex";
alertDialog.innerHTML = "The email entered is invalid.";
} else {
alertDialog.style.backgroundColor = "green";
alertDialog.style.color = "white";
alertDialog.style.display = "flex";
alertDialog.innerHTML =
"Thanks for your message. I'll respond soon.";
form.reset();
setTimeout(function () {
alertDialog.style.display = "none";
}, 3000);
}
});
});
// scroll to top when reloaded
$(document).ready(function () {
$("html, body").animate(
{
scrollTop: 0,
},
1000
);
});
</script>
</body>
</html>