-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (93 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prashant Gupta - Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#" class="tab-link" data-tab="about">About</a></li>
<li><a href="#" class="tab-link" data-tab="education">Education</a></li>
<li><a href="#" class="tab-link" data-tab="skills">Skills</a></li>
<li><a href="#" class="tab-link" data-tab="projects">Projects</a></li>
<li><a href="#" class="tab-link" data-tab="internship">Internship</a></li>
<li><a href="#" class="tab-link" data-tab="extracurricular">Extracurricular</a></li>
<li><a href="#" class="tab-link" data-tab="contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="tab-content">
<h1>Prashant Gupta</h1>
<h2>Welcome To My Personal Portfolio Page</h2>
</section>
<section id="about" class="tab-content">
<h2>About Me</h2>
<p>Hello I am Prashant Gupta,a developer and an Electrical Engineer.
As a highly motivated and passionate electrical engineering graduate
with a keen interest in software engineering, I am seeking a
challenging role that will allow me to utilize my skills, innovate
with cutting-edge technologies, and drive business success. With
proficiency in Microsoft Office Suite, Python, and AutoCAD
(Electrical), I am eager to bring my skills and enthusiasm to a
dynamic and forward-thinking.
In conclusion, I am a dynamic and driven individual with a passion for
software engineering and a track record of delivering high-quality
work. With a focus on innovation, sustainability, and teamwork, I am
confident that I can make a valuable contribution to any organization
seeking to excel in this field. Thank you for considering my
application, and I look forward to the opportunity to discuss how I
can help your team thrive.</p>
</section>
<section id="education" class="tab-content">
<h2>Education</h2>
<p>Btech in Electrical Engineering, Dr.APJ Abdul Kalam Technical University, Uttar Pradesh, 2020<br>
GPA: 78.80%</p>
</section>
<section id="skills" class="tab-content">
<h2>Skills</h2>
<ul>
<li>C/C++ programming</li>
<li>Networking</li>
<li>Microsoft Office (Word, Excel, PowerPoint)</li>
<li>Python</li>
<li>SQL</li>
<li>AutoCAD (Electrical)</li>
</ul>
</section>
<section id="projects" class="tab-content">
<h2>Projects</h2>
<ul>
<li>Smart Street Lighting System</li>
</ul>
</section>
<section id="internship" class="tab-content">
<h2>Internship</h2>
<p>Training Program in 132/30 KV Power Distribution Substation, UPPCL, April 2018 - June 2018</p>
</section>
<section id="extracurricular" class="tab-content">
<h2>Extracurricular</h2>
<ul>
<li>Cricket</li>
<li>Music</li>
</ul>
</section>
<section id="contact" class="tab-content">
<h2>Contact</h2>
<p>
Surti Hatta purani basti<br>
prashant.gpt2020@gmail.com<br>
7905199035
</p>
</section>
</main>
<footer>
<p>© 2023 Prashant Gupta</p>
</footer>
<script src="script.js"></script>
</body>
</html>