-
Notifications
You must be signed in to change notification settings - Fork 0
/
My_Sr_Portfolio.html
592 lines (474 loc) · 16.6 KB
/
My_Sr_Portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My_Portfolio</title>
<style>
*{
font-family: cursive;
}
body, h1, h2, h3, p, ul, li {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: rgb(144, 144, 213);
padding: 20px;
animation: rainbowAnimation 20s infinite linear;
color: #333;
}
header{
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
animation: rainbowAnimation 10s infinite linear;
}
@keyframes rainbowAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
header{
background: linear-gradient(45deg, #0a67df, #1c6b9f, #2d65b8, #299276, #1bac8a, #2ba72b, #51b72f);
background-size: 1400% 1400%;
color: #fff;
text-align: center;
padding: 50px 0;
position: relative;
}
header h1 {
font-size: 2em;
margin-bottom: 10px;
}
header p {
font-size: 1.2em;
margin-bottom: 20px;
}
.info, .achievements, .semester-results, .powerpoint-slide, .gallery {
margin-top: 30px;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.info h2, .achievements h2, .semester-results h2, .powerpoint-slide h2, .gallery h2 {
font-size: 1.5em;
margin-bottom: 20px;
}
.subject {
margin-bottom: 20px;
}
.subject h3 {
font-size: 1.2em;
margin-bottom: 10px;
}
.progress-bar {
width: 80%;
margin: 0 auto 20px;
background-color: #f0f0f0;
border-radius: 5px;
}
.progress {
background-color: #3498db;
color: #fff;
text-align: center;
padding: 10px;
border-radius: 5px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 20px;
margin-top: 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
footer {
text-align: center;
margin-top: 30px;
}
@media only screen and (max-width: 768px) {
.gallery {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
grid-gap: 10px;
}
}
.congo
{
font-size: 2em;
margin-bottom: 10px;
transition: transform 0.3s ease;
}
@media only screen and (max-width: 768px) {
.congo {
font-size: 1.5em;
}
}
header p {
font-size: 1.2em;
margin-bottom: 20px;
}
.congo:hover{
transform: scale(1.1);
}
.profile-pic {
position: absolute;
top: 20px;
right: 20px;
transition: transform 0.3s ease;
}
.profile-pic img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 2px solid #fff;
transition: transform 5s ease;
}
header:hover .profile-pic img {
transform: scale(1.1);
}
@media only screen and (max-width: 783px) {
.profile-pic img {
width: 50px;
height: 50px;
}
}
h2 {
transition: transform 0.3s ease;
}
h2:hover {
transform: scale(1.1);
}
#sem-r{
border-radius: 15px 50px 30px;
background-color:rgb(192, 224, 64);
border: 20px solid black ;
width: 90%;
align-items: center;
padding: 4px;
text-align: center;
position: relative;
}
#sem-a
{
border-radius: 15px 50px 30px;
background-color:turquoise;
border: 5px solid black ;
width: 280px;
align-items: center;
padding: 4px;
}
.certificates {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-gap: 20px;
margin-top: 30px;
background-color: #f0f0f0;
border-radius: 15px 50px 30px;
padding: 16px;
}
.certificates h2 {
font-size: 1.5em;
margin-bottom: 20px;
}
.certificate {
size: 100%;
display: flex;
}
.certificate img {
max-width: 100px;
height: auto;
border-radius: 10px;
margin-right: 20px;
}
.certificate img:hover{
height: 200%;
width: 200%;
}
a:hover{
font-size: 150%;
}
.navbar ul {
overflow: auto;
padding: 0;
}
.navbar li {
list-style: none;
display: inline-block;
padding: 3px;
margin: 10px 5px;
}
.navbar li a {
background-color: rgb(236, 167, 236);
padding: 8px 12px;
text-decoration: none;
color: rgb(62, 59, 55);
border-radius: 15px 50px 30px;
border: 5px double black;
}
.navbar li a:hover {
padding: 8px 12px;
text-decoration: dashed;
color: rgb(7, 11, 0);
font-family: cursive;
}
@media only screen and (max-width: 768px) {
.navbar {
text-align: center;
}
.navbar ul {
display: block;
text-align: center;
}
.navbar li {
display: block;
margin: 10px auto;
}
}
</style>
</head>
<body>
<header>
<nav class="navbar" id="navbar">
<ul> <li > <a href="#about" >About Me</a></li>
<li><a href="#achievements">Achievements</a></li>
<li><a href="#results">Semester Results</a></li>
<li> <a href="#skills">Professional Skills</a></li>
<li> <a href="#certificates">Certificates</a></li>
<li> <a href="#gallery">Social-Work</a></li>
</ul>
</nav>
</header>
<header>
<div class="profile-pic">
<img src="https://tse4.mm.bing.net/th?id=OIP.YO2rFDoBlrWNm2k2cv6yfgHaHa&pid=Api&P=0&h=180" alt="Your Picture">
</div>
<h1 class="congo">Myself Ayub Kumar</h1>
<p>Glad to present about my career achivements and educational qulifications.</p>
</header>
<section class="info" id="about">
<h2>About Me</h2>
<p>As a highly skilled and experienced computer programmer, I am passionate about writing code and developing high-quality software that meets the needs of my clients. My strong background in computer science, coupled with my commitment to using the best programming practices and tools available, makes me a valuable asset to any software development team.</p>
<p>I am organised,eficeint,and hard working person,and willing to discover and accept new ideas.</p>
<p> <a href="/cv.txt">
<button class="btn">Download</button></a></p>
</section>
<section class="achievements" id="achievements">
<h2>My Achievements</h2>
<div class="progress-bar">
<div class="progress" style="width: 80%;">80% Graduation Project</div>
</div>
<div class="progress-bar">
<div class="progress" style="width: 90%;">90% Internship Completion</div>
</div>
<div class="progress-bar">
<div class="progress" style="width: 70%;">70% Volunteer Work</div>
</div>
</section>
<section class="semester-results" id="results">
<h2 id="sem-r">Semester Results</h2>
<section class="semester-results1">
<h2 id="sem-a">First Semester</h2>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 97%;">Mathematics-1</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 89%;">EEE</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 89%;">Inro to c lang</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 77%;">Graphic Desgining</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 76%;">ECE</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 45%;">Tech-English</div>
</div>
</div>
</section>
<section class="semester-results2">
<h2 id="sem-a">Second Semester</h2>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 80%;">Mathematics-2</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 81%;">Physics-1</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 67%;">DSA</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 89%;">c/c++ Lang</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 68%;">Chemistry</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 78%;">Workshop</div>
</div>
</div>
</section>
<section class="semester-results3">
<h2 id="sem-a">Third Semester</h2>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 88%;">OOPs</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 92%;">DAA</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 56%;">Engeneering Mechanics</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 86%;">Mathematics-3</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 79%;">Mattlab</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 70%;">Sanskrit</div>
</div>
</div>
</section>
<section class="semester-results4">
<h2 id="sem-a">Fourth Semester</h2>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 80%;">Discrete-Mathematics</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 91%;">C-O-A</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 87%;">O-S</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 90%;">Webtechnology</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 66%;">Java</div>
</div>
</div>
<div class="subject">
<div class="progress-bar">
<div class="progress" style="width: 70%;">Enterpreneurship</div>
</div>
</div>
</section>
</section>
<section class="powerpoint-slide" id="skills">
<h2>Professional Skills</h2>
<div class="slide-content">
<div class="slide">
<h3>Leadership</h3>
<p>My mission statement is short and to the point. I believe that achieving happiness
is a lifelong journey which I will always be striving for. In order to continue on
this journey to happiness, I feel it is necessary to live every day to the fullest.</p>
</div>
<div class="slide">
<h3>Communication</h3>
<p>
<ol>
<li> Responsible for entire stock of apparel, also for transferring apparel from stockroom onto sales floor for consumer purchase.</li>
<li>Communicated with customers and implemented strong work ethic by facilitating their needs.</li>
<li>Reduced inventory by 23% through category management, stock balancing, creative merchandising ideas and developing purchasing partnerships with outside agencies.</li>
<li>Achieved company goal of 100% customer satisfaction.</li>
</ol>
</p>
</div>
<div class="slide">
<h3>Problem Solving</h3>
<p>
<ol>
<li> Identifying and analyzing a problem</li>
<li> Taking effective actions</li>
<li>Understanding the effect of the decisions</li>
<li>Coming up with creative and novel solutions</li>
<li>Thinking abstractly about problems</li>
</ol>
</p>
</div>
</div>
</section>
<section class="certificates" id="certificates">
<h2>Certificates</h2>
<div class="certificate">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSTBoDBYqxjjnNT5kP25AyPRe10MmQ9P6jlLg&usqp=CAU"alt="Certificate 1"><a href="certificate1.html">CLICK</a>
</div>
<div class="certificate">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRBK3XvFM3Dv0Q8ksoOke2b9h2pfPpCc8hXCA&usqp=CAU"alt="Certificate 2">
<a href="certificate2.html">CLICK</a>
</div>
<div class="certificate">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRiCG7kz2RI8GJPoSjS8PqOLto6xHRyEX9j8g&usqp=CAU"alt="Certificate 3"><a href="certificate3.html">CLICK</a>
</div>
<div class="certificate">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRLwUTEKJt2bOxaLSIUGpuboRHUP5OoYnw5zw&usqp=CAU" alt="Certificate 4"><a href="certificate4.html">CLICK</a>
</section>
<section class="gallery" id="gallery">
<h2>Social Works</h2>
<img src="https://tse4.mm.bing.net/th?id=OIP.YO2rFDoBlrWNm2k2cv6yfgHaHa&pid=Api&P=0&h=70" alt="Graduation Photo 1">
<img src="https://tse4.mm.bing.net/th?id=OIP.YO2rFDoBlrWNm2k2cv6yfgHaHa&pid=Api&P=0&h=70" alt="Graduation Photo 2">
<img src="https://tse4.mm.bing.net/th?id=OIP.YO2rFDoBlrWNm2k2cv6yfgHaHa&pid=Api&P=0&h=70" alt="Graduation Photo 3">
</section>
<footer>
<p>© Suramya Ranjan" The information present in this portfolio is for just demo purpose not represts any actual existence"</p>
<p><a href="#navbar"><button>Go To Top</button></a></p>
</footer>
</body>
</html>