-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
364 lines (315 loc) · 11.6 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
font-family: 'Poppins', sans-serif;
}
.section {
position: relative;
padding: 80px 0;
}
.section::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
z-index: -1;
}
.section-content {
position: relative;
z-index: 1;
}
.section-title {
color: #ffffff;
font-size: 36px;
font-weight: 700;
text-align: center;
margin-bottom: 60px;
}
.section-subtitle {
color: #ffffff;
font-size: 24px;
font-weight: 500;
text-align: center;
margin-bottom: 40px;
}
.section-img {
display: block;
margin: 0 auto;
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
object-position: center;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.project-card {
border-radius: 12px;
overflow: hidden;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
background-color: white;
}
.project-card:hover {
transform: translateY(-10px);
}
.timeline {
position: relative;
margin-top: 2rem;
}
.timeline:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 2px;
height: 100%;
background-color: #fff;
transform: translateX(-50%);
}
.timeline-item {
position: relative;
margin-bottom: 2rem;
}
.timeline-content {
position: relative;
padding: 1rem;
background-color: #fff;
border-radius: 0.5rem;
}
.timeline-content h3 {
margin-bottom: 0.5rem;
color: #3b3c3d;
font-size: 1.25rem;
font-weight: bold;
}
.timeline-content p {
margin-bottom: 0;
color: #2e2f2f;
font-size: 0.875rem;
}
.timeline-item:first-child:before {
display: none;
}
.timeline-item:last-child:before {
display: none;
}
.timeline-item:before {
border: 2px solid #fff;
}
.timeline-item:last-child:before {
border-width: 0;
}
.timeline-item:hover{
transform: scale(1.01);
transition: 0.2s;
}
.joke-card {
background-color: #ffffff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s;
cursor: pointer;
position: relative;
}
.joke-card:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.joke {
font-style: italic;
margin-bottom: 10px;
}
.btn {
padding: 8px 16px;
border: 1px solid #999;
border-radius: 4px;
cursor: pointer;
}
.btn.btn-outline {
background-color: transparent;
color: #999;
}
.btn.btn-outline:hover {
background-color: #999;
color: #fff;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
75% {
background-position: 100% 75%;
}
100% {
background-position: 0% 50%;
}
}
.bg-gradient-to-r {
background: linear-gradient(to right, hsl(35, 84%, 74%), #4F46E5);
background-size: 200% 200%;
animation: gradientAnimation 5s ease-in-out infinite;
}
</style>
</head>
<body>
<header class="bg-gradient-to-r from-purple-600 to-indigo-600 text-white py-10">
<div class="container mx-auto flex items-center justify-center flex-col">
<img src="profile.jpg" alt="Profile Photo" class="w-32 rounded-full mb-4 border-4">
<h1 class="text-4xl">Shashank Kumar</h1>
<p class="text-lg">Android Developer</p>
</div>
</header>
<section id="intro" class="bg-gradient-to-r from-purple-600 to-indigo-600 text-white py-10 text-white">
<div class="container mx-auto section-content">
<p class="section-subtitle">
Welcome to my portfolio website! I'm Shashank Kumar, a passionate Software Developer driven by a relentless pursuit of delivering impactful solutions. With expertise in Android Development, Java, PHP- Laravel, Web Development. I bring creativity, innovation, and a strategic approach to every project. Explore my portfolio and let's collaborate on creating remarkable outcomes together.
</p>
</div>
</section>
<section id="education" class="section bg-gradient-to-r from-blue-600 to-cyan-600 text-white">
<div class="container mx-auto section-content">
<h2 class="section-title">Education</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-content">
<h3><i class="fas fa-university"></i> IIT BHU, Varanasi</h3>
<p class="text-gray-500">B.tech in Pharmaceutical Engineering and Technology, 2022-2026</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3><i class="fas fa-graduation-cap"></i> S.A.D.N Convent School</h3>
<p class="text-gray-500">Completed Class 12th in 2021, Scored 96.6%</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3><i class="fas fa-school"></i> G.I.P Public School</h3>
<p class="text-gray-500">Completed Class 10th in 2019, Scored 95%</p>
</div>
</div>
</div>
</div>
</section>
<section id="certificates" class="section bg-gradient-to-r from-pink-600 to-rose-600 text-white">
<div class="container mx-auto section-content">
<h2 class="section-title">Certificates</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="certificate-card bg-white rounded-lg p-4 flex items-center justify-center flex-col hover:shadow-xl transition duration-400">
<i class="fab fa-java text-4xl mb-4 text-gray-500"></i>
<h3 class="text-xl font-bold mb-2 text-gray-500">Oracle Certified Java 8 Programmer</h3>
<p class="text-gray-500">Year: 2017</p>
</div>
<div class="certificate-card bg-white rounded-lg p-4 flex items-center justify-center flex-col hover:shadow-xl transition duration-400">
<i class="fab fa-google text-4xl mb-4 text-gray-500"></i>
<h3 class="text-xl font-bold mb-2 text-gray-500" >Google Certified Associate Android Developer</h3>
<p class="text-gray-500">Year: 2018</p>
</div>
</div>
</div>
</section>
<section id="skills" class="section bg-gradient-to-r from-green-600 to-lime-600 text-white">
<div class="container mx-auto section-content">
<h2 class="section-title">My Skills</h2>
<ul class="grid grid-cols-2 md:grid-cols-4 gap-4">
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-500">
<i class="fab fa-html5 text-3xl mb-2 text-gray-500"></i>
<p >HTML</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-css3-alt text-3xl mb-2"></i>
<p>CSS</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-js text-3xl mb-2"></i>
<p>JavaScript</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-java text-3xl mb-2"></i>
<p>Java</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-cuttlefish text-3xl mb-2"></i>
<p>C</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-python text-3xl mb-2"></i>
<p>Python</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-android text-3xl mb-2"></i>
<p>Android</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-php text-3xl mb-2"></i>
<p>PHP</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fab fa-aws text-3xl mb-2"></i>
<p>AWS</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fas fa-database text-3xl mb-2"></i>
<p>SQL</p>
</li>
<li class="p-4 bg-white rounded-lg text-center text-gray-500 flex-col hover:shadow-xl transition duration-300">
<i class="fas fa-code-branch text-3xl mb-2"></i>
<p>Firebase</p>
</li>
</ul>
</div>
</section>
<section id="projects" class="section bg-gradient-to-r from-yellow-600 to-amber-600 text-white">
<div class="container mx-auto section-content">
<h2 class="section-title">My Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="project-card text-gray-500 bg-gray-100 rounded-lg">
<img src="unnamed.png" alt="Project 1" class="w-full">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">Opined</h3>
<p class="mb-4">Opined is a discussion-driven micro-blogging social media platform that focuses only on people’s opinions and dissent.</p>
<p class="text-sm text-gray-500 mb-2">App Link: <a href="https://play.google.com/store/apps/details?id=com.app.weopined&hl=en_IN&gl=US" class="text-gray-500 underline">Link to Playstore</a></p>
<p class="text-sm text-gray-500">Installs: 9000+</p>
</div>
</div>
<div class="project-card text-gray-500 bg-gray-100 rounded-lg">
<img src="orion.png" alt="Project 2" class="w-full p-8">
<div class="p-4">
<h3 class="text-xl font-bold mb-2">Android Tutorial App</h3>
<p class="mb-4">Android Tutorial app with code examples to learn Android, Java, Kotlin at one place.</p>
<p class="text-sm text-gray-500 mb-2">App Link: <a href="https://play.google.com/store/apps/details?id=programming.android.tutorial&hl=en_IN&gl=US" class="text-gray-500 underline">Link to Playstore</a></p>
<p class="text-sm text-gray-500">Installs: 32,000+</p>
</div>
</div>
</div>
</div>
</section>
<section id="jokes" class="section bg-gradient-to-r from-yellow-600 to-amber-600 text-gray-500">
<div class="container mx-auto section-content">
<div class="jokes-container">
<div id="joke-card" class="joke-card">
<p id="joke-text" class="joke"></p>
<button id="new-joke-btn" class="btn btn-outline">Get New Joke</button>
</div>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white py-10">
<div class="container mx-auto flex items-center justify-center flex-col">
<ul class="flex gap-4">
<li><a href="mailto:[email protected]" class="flex items-center"><i class="far fa-envelope text-2xl mr-2"></i> [email protected]</a></li>
<li><a href="https://www.linkedin.com/in/your-linkedin-profile" class="flex items-center"><i class="fab fa-linkedin text-2xl mr-2"></i> LinkedIn</a></li>
</ul>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>