-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
302 lines (280 loc) · 14.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shubham Tripathi Portfolio</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS -->
<link rel="icon" href="favicon.ico"> <!-- Optional favicon -->
<!-- Font Awesome for LinkedIn and GitHub Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body class="light-mode">
<!-- Background Ocean Wave Music -->
<audio id="background-audio" autoplay muted>
<source src="ocean-waves.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<!-- Floating Play/Pause Button -->
<button id="audio-control-btn" class="floating-audio-btn" aria-label="Toggle Music">
<i class="fas fa-volume-up"></i>
</button>
<!-- Navigation -->
<header>
<ul class="navbar">
<li><a href="#home" data-tooltip="Home"><i class="fas fa-home"></i></a></li>
<li><a href="#about" data-tooltip="About"><i class="fas fa-user"></i></a></li>
<li><a href="#skills" data-tooltip="Skills"><i class="fas fa-cogs"></i></a></li>
<li><a href="#projects" data-tooltip="Projects"><i class="fas fa-project-diagram"></i></a></li>
<li><a href="#education" data-tooltip="Education"><i class="fas fa-graduation-cap"></i></a></li>
<li><a href="#certifications" data-tooltip="Certifications"><i class="fas fa-certificate"></i></a></li>
<li><a href="#internships" data-tooltip="Internships"><i class="fas fa-briefcase"></i></a></li>
<li><a href="#contact" data-tooltip="Contact"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://www.linkedin.com/in/theshubhamtripathi" target="_blank" data-tooltip="LinkedIn"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/theshubhamtripathi" target="_blank" data-tooltip="GitHub"><i class="fab fa-github"></i></a></li>
<li>
<button id="theme-toggle" class="theme-toggle-btn" data-tooltip="Toggle Theme">
<i class="fas fa-sun"></i>
</button>
</li>
</ul>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="slideshow">
<div class="slide">
<img src="img1.gif" alt="Slide 1">
</div>
<div class="slide">
<img src="img2.gif" alt="Slide 2">
</div>
<div class="slide">
<img src="img3.gif" alt="Slide 3">
</div>
</div>
</section>
<div class="hero-content">
<h1 class="typewriter">Hi, I'm Shubham Tripathi!</h1>
<p class="typewriter">Learning and implementing new things</p>
</div>
</section>
<!-- About Section -->
<section id="about" class="about" style="width: 100%;">
<div class="about-container">
<!-- Image Section -->
<div class="about-image">
<img src="your-image-url.png" alt="Shubham Tripathi" />
</div>
<!-- Text Section -->
<div class="about-content">
<h2>About Me</h2>
<p>
Hello, I’m Shubham Tripathi. 👋<br>
I am currently a 2nd-year Computer Science Engineering (CSE Core) student at VIT Bhopal.<br>
I have a strong passion for data structures and algorithms (DSA) 🔍. <br>
I actively engage in the latest technology trends 💻, focusing on C++ and iOS/Swift development.<br>
My curiosity also extends to astronomy 🌌, and I enjoy traveling ✈️ to explore new perspectives.<br>
I’m always open to connecting with professionals and peers to collaborate on innovative projects. <br>
Let’s connect and share insights! 🚀 <a href="https://www.linkedin.com/in/theshubhamtripathi" target="_blank">LinkedIn</a> for more details about my professional journey.<br>
</p>
</div>
</div>
</section>
<!-- GIF Section -->
<section id="gif-section" class="gif-section">
<div class="gif-container">
<!-- GIF 1 -->
<div class="gif-card">
<img src="your-first-gif-url.gif" alt="GIF 1" />
<h3 class="gif-title">Exploring Creativity</h3>
</div>
<!-- GIF 2 -->
<div class="gif-card">
<img src="your-second-gif-url.gif" alt="GIF 2" />
<h3 class="gif-title">Innovative Coding</h3>
</div>
</div>
</section>
<!-- Cursor elements -->
<div class="cursor"></div>
<div class="cursor-outline"></div>
<!-- Skills Section -->
<section id="skills" style="width: 100%;">
<h2>Skills</h2>
<div class="skill-container">
<div class="skill" title="HTML"><i class="fab fa-html5"></i></div>
<div class="skill" title="CSS"><i class="fab fa-css3-alt"></i></div>
<div class="skill" title="JavaScript"><i class="fab fa-js"></i></div>
<div class="skill" title="C++"><i class="fas fa-code"></i></div>
<div class="skill" title="Java"><i class="fab fa-java"></i></div>
<div class="skill" title="C"><i class="fas fa-copyright"></i></div>
<div class="skill" title="Python"><i class="fab fa-python"></i></div>
<div class="skill" title="AI/ML"><i class="fas fa-robot"></i></div>
<div class="skill" title="Swift"><i class=" fab fa-swift"></i></div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects" style="width: 100%;">
<h2>Projects</h2>
<div class="project-card">
<h3>Project 1: PINNACLE-LABS</h3>
<p>🎓 Pinnacle Labs C Programming Internship - Task Repository</p>
<a href="https://github.com/theshubhamtripathi/PINNACLE-LABS" target="_blank" class="btn">View on GitHub</a>
</div>
<div class="project-card">
<h3>Project 2: CODSOFT</h3>
<p>CODSOFT Internship Repository Java🎓🚀.</p>
<a href="https://github.com/theshubhamtripathi/CODSOFT" target="_blank" class="btn">View on GitHub</a>
</div>
</section>
<!-- Education Section -->
<section id="education" style="width: 100%;">
<h2>Education</h2>
<div class="education-item">
<h2>Bachelor of Technology (B.Tech) in Computer Science Engineering</h2>
<p><strong>Institution:</strong> VIT Bhopal University</p>
<p><strong>Year of Graduation:</strong> 2027</p>
<p><strong>Grade:</strong> 9.07 CGPA</p>
<p><strong>Details:</strong> Currently pursuing a 2nd-year degree in Computer Science Engineering (CSE Core) with a focus on algorithms, data structures, and software development.</p>
</div>
<div class="education-item">
<h2>Intermediate</h2>
<p><strong>Institution:</strong> J T Golden Jubilee School</p>
<p><strong>Year of Graduation:</strong> 2022</p>
<p><strong>Details:</strong> Completed high school with a focus on physics, chemistry and mathematics securing top grades in subjects like Physics and Mathematics.</p>
<p><strong>Grade:</strong> 89 %</p>
</div>
<div class="education-item">
<h2>High School</h2>
<p><strong>Institution:</strong> J T Golden Jubilee School</p>
<p><strong>Year of Graduation:</strong> 2020</p>
<p><strong>Details:</strong> Completed high school with a focus on science, mathematics and humanities securing top grades in subjects like Physics and Mathematics.</p>
<p><strong>Grade:</strong> 89 %</p>
</div>
</section>
<!-- Certifications Section -->
<section id="certifications" style="width: 100%;">
<h2>Certifications</h2>
<div class="certifications-container">
<!-- Certificate 1 -->
<table>
<tr>
<td><div style="margin-left: 823px;" class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate1.png" alt="Certificate 1">
<div class="certificate-title">Matlab</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate2.png" alt="Certificate 2">
<div class="certificate-title">Fundamental of AI/ML</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate3.png" alt="Certificate 2">
<div class="certificate-title">Python Essentials</div>
</td>
</tr>
<tr>
<td><div style="margin-left: 823px;" class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate4.png" alt="Certificate 1">
<div class="certificate-title">SQL (Basic)</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate5.png" alt="Certificate 2">
<div class="certificate-title">Python (Basic)</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate6.png" alt="Certificate 2">
<div class="certificate-title">Problem Solving (Intermediate)</div>
</td>
</tr>
<tr>
<td><div style="margin-left: 823px;" class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate7.png" alt="Certificate 1">
<div class="certificate-title">Java (Basic)</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate8.png" alt="Certificate 2">
<div class="certificate-title">Intro to GEN AI</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate9.png" alt="Certificate 2">
<div class="certificate-title">Cloud Technology</div>
</td>
</tr>
<tr>
<td><div style="margin-left: 823px;" class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate10.png" alt="Certificate 1">
<div class="certificate-title">AI Bootcamp - for Marketing</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate11.png" alt="Certificate 2">
<div class="certificate-title">TCs - ion</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate12.png" alt="Certificate 2">
<div class="certificate-title">GEN AI Landscape</div>
</td>
</tr>
<tr>
<td><div style="margin-left: 823px;" class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate13.png" alt="Certificate 1">
<div class="certificate-title">Fundamentals of Data</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate14.png" alt="Certificate 2">
<div class="certificate-title">Fundamentals of AI</div>
</td>
<td><div class="certificate-card glass-card">
<img style="width: 300px; height: 200px;" src="certificate14.png" alt="Certificate 2">
<div class="certificate-title">Certificate Title 1</div>
</td>
</tr>
</table>
</section>
<!-- Internships Section -->
<section id="internships">
<h2>Internships</h2>
<div class="internships-container">
<!-- Internship 1 -->
<div class="internship-card glass-card">
<img src="offer_letter1.png" alt="Offer Letter 1">
<div class="internship-title">CodSoft Java Intern</div>
</div>
<div class="internship-card glass-card">
<img src="completion_certificate1.png" alt="Completion Certificate 1">
<div class="internship-title">Completion Certificate</div>
</div>
<!-- Internship 2 -->
<div class="internship-card glass-card">
<img src="offer_letter2.png" alt="Offer Letter 2">
<div class="internship-title">Pinnacle-Labs C Intern</div>
</div>
<div class="internship-card glass-card">
<img src="completion_certificate2.png" alt="Completion Certificate 2">
<div class="internship-title">Completion Certificate</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" style="width: 100%;">
<h2>Contact Me</h2>
<form action="#">
<input type="text" placeholder="Your Name" required style="margin-left: -360px;height: 40px; width: 150px; border-radius: 15px; border: solid #6a1e55 1px;">
<input type="email" placeholder="Your Email" required style="height: 40px; width: 150px; border-radius: 15px; border: solid #6a1e55 1px;">
<textarea placeholder="Your Message" required style="margin-left: 400px;height: 40px; width: 150px; border-radius: 15px; border: solid #6a1e55 1px; float: left;" ></textarea ><br>
<button type="submit" class="btn">Send</button style="height: 40px; width: 150px; border-radius: 15px; border: solid #6a1e55 1px;" >
</form>
</section>
<!-- Footer -->
<footer style="width: 100%;">
<p>© 2024 Shubham Tripathi. All rights reserved.</p>
<ul>
<li><a href="https://www.linkedin.com/in/theshubhamtripathi" target="_blank" data-tooltip="LinkedIn"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/theshubhamtripathi" target="_blank" data-tooltip="GitHub"><i class="fab fa-github"></i></a></li>
<li><a href="mailto:[email protected]" target="_blank" data-tooltip="Email"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://www.hackerrank.com/profile/theshubhamtripa1" target="_blank" data-tooltip="HackerRank"><i class="fab fa-hackerrank"></i></a></li>
</ul>
</footer>
<!-- Link to Your JavaScript -->
<script src="script.js"></script>
</body>
</html>