-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFINAL_PORTFOLIO.html
More file actions
413 lines (359 loc) Β· 9.19 KB
/
FINAL_PORTFOLIO.html
File metadata and controls
413 lines (359 loc) Β· 9.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Gopal Gupta | Portfolio</title>
<style>
/* Extras */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", "Segoe UI", sans-serif;
background: black;
color: #da1414;
line-height: 1.7;
font-size: 16px;
scroll-behavior: smooth;
}
a {
text-decoration: none;
color: inherit;
transition: 0.3s ease;
}
h1, h2, h3 {
margin-bottom: 12px;
font-weight: 600;
}
img {
max-width: 100%;
display: block;
border-radius: 50%;
}
.header {
width: 90%;
max-width: 1000px;
margin: 0 auto;
}
/* Keyframes */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Navigation Bar */
nav {
position: sticky;
top: 0;
background: black;
box-shadow: 0 2px 6px 2px rgba(248, 2, 2, 0.08);
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
nav p {
font-weight: 500;
color: red;
font-size: 30px;
margin: 0;
}
nav ul {
display: flex;
gap: 25px;
list-style: none;
margin: 0;
padding: 0;
}
nav ul li a {
font-weight: 500;
color: red;
}
nav ul li a:hover {
border-bottom: 2px solid red;
}
/* Header Section */
header {
text-align: center;
padding-top: 60px;
}
header h1 {
font-size: 2.4rem;
color: red;
}
header p {
color: gray;
font-size: 1.1rem;
}
/* Hero Section */
.hero {
text-align: center;
animation: fadeUp 1s ease;
}
.hero-img-wrapper {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.hero img {
width: 200px;
height: 200px;
border: 4px solid red;
margin: 20px 40px;
transition: 0.3s ease;
}
.hero img:hover {
transform: scale(1.05) rotate(2deg);
}
.hero h2 {
font-size: 2rem;
margin-bottom: 12px;
}
.hero p {
color: gray;
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
/* Sections */
section {
margin: 60px 0;
}
/* Skills Section */
.skills {
background: black;
padding: 50px 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(239, 6, 6, 0.948);
animation: fadeUp 1.2s ease;
}
.skills h2 {
text-align: center;
margin-bottom: 25px;
font-size: 1.8rem;
}
.skills-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 14px;
}
.skills-list span {
background: red;
color: black;
padding: 10px 18px;
border-radius: 25px;
font-size: 0.95rem;
font-weight: 500;
transition: 0.3s ease;
}
.skills-list span:hover {
background-color: black;
color: red;
cursor: pointer;
box-shadow: 0 3px 8px rgba(239, 6, 6, 0.948);
transform: scale(1.05);
}
/* Projects Section */
.projects h2 {
text-align: center;
margin-bottom: 30px;
font-size: 1.8rem;
}
.project-card {
background: black;
padding: 25px;
border-radius: 12px;
margin-bottom: 24px;
box-shadow: 0 3px 8px rgba(239, 6, 6, 0.948);
transition: 0.3s ease;
animation: fadeUp 1.3s ease;
}
.project-card:hover {
transform: translateY(-6px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.project-card h3 {
margin-bottom: 10px;
font-size: 1.3rem;
}
.project-card p {
margin-bottom: 12px;
color: gray;
}
.project-card a {
color: red;
font-weight: 500;
border-bottom: 2px solid transparent;
}
.project-card a:hover {
border-bottom: 2px solid red;
}
/* Contact Section */
.contact {
background: black;
padding: 50px 20px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(239, 6, 6, 0.948);
margin-bottom: 50px;
animation: fadeUp 1.4s ease;
}
.contact h2 {
text-align: center;
margin-bottom: 18px;
font-size: 1.8rem;
}
.contact form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 500px;
margin: 0 auto;
}
.contact input,
.contact textarea {
background-color: black;
color: red;
padding: 12px;
border: 1px solid red;
border-radius: 8px;
font-size: 1rem;
transition: 0.3s ease;
}
.contact input:focus,
.contact textarea:focus {
border-color: red;
outline: none;
box-shadow: 0 0 6px rgba(239, 6, 6, 0.948);
}
.contact button {
background: rgba(239, 6, 6, 0.948);
color: white;
border: none;
padding: 14px;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
font-weight: 500;
transition: 0.3s ease;
}
.contact button:hover {
background: black;
box-shadow: 0 3px 8px rgba(239, 6, 6, 0.948);
transform: translateY(-2px);
}
/* Footer */
footer {
text-align: center;
padding: 25px;
color: gray;
font-size: 0.95rem;
}
/* Responsive */
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
.hero h2 {
font-size: 1.6rem;
}
.skills-list {
gap: 10px;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<p>GOPAL GUPTA | PORTFOLIO</p>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="header">
<!-- Header Section -->
<header>
<h1>π Hi, I'm Gopal Gupta</h1>
<p>A curious Web Developer who loves clean design, problem solving, and turning ideas into code.</p>
</header>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="hero-img-wrapper">
<img src="./gopalgupta.jpeg" alt="Smiling portrait of Gopal Gupta" />
</div>
<h2>Welcome to my little corner of the web π</h2>
<p>
I create user-friendly, responsive websites that feel smooth and intuitive. Always learning,
always building π
</p>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<h2>β‘ Skills I Work With</h2>
<div class="skills-list">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
<span>Responsive Design</span>
<span>JAVA</span>
<span>Python</span>
<span>C++</span>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<h2>π‘ Projects I'm Proud Of</h2>
<div class="project-card">
<h3>Portfolio Website</h3>
<p>A minimal, responsive site to showcase my skills and projects. Built with love and simplicity.</p>
<a href="#">View Project</a>
</div>
<div class="project-card">
<h3>Moon Orbiting Earth</h3>
<p>
A clean display of the Moon orbiting Earth designed for my project, with responsive design.
</p>
<a href="./MOON.html" target="_blank">View Project</a>
</div>
<div class="project-card">
<h3>Ferry Wheel</h3>
<p>A simple Ferry Wheel,with smooth design and Kids Friendly.</p>
<a href="./Ferry_Wheel.html" target="_blank">View Project</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<h2>π¬ Let's Connect</h2>
<form>
<input type="text" placeholder="Your Name" required />
<input type="email" placeholder="Your Email" required />
<textarea rows="4" placeholder="Your Message" required></textarea>
<button type="submit">Let's Connect π</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>Β© 2025 Gopal Gupta | Crafted with β€οΈ, coffee β, and a lot of curiosity β¨</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/gopal-gupta-1876ba37b/" target="_blank">LinkedIn | </a>
<a href="https://github.com/gopal25bcs10663-gif" target="_blank">GitHub | </a>
<a href="https://www.instagram.com/_gopal_gupta_07?utm_source=qr&igsh=ZXNubjB1Mmd0NzFi" target="_blank">Instagram</a>
</div>
</footer>
</div>
</body>
</html>