-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
723 lines (597 loc) · 36.8 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
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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saurabh Kishor Portfolio </title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo">
<a href="#">Welcome</a>
</div>
<ul class="menu">
<li><a href="#home" class="menu-btn">Home</a></li>
<li><a href="#about" class="menu-btn">About Me</a></li>
<li><a href="#experience" class="menu-btn">Experiences</a></li>
<li><a href="#skills" class="menu-btn">Skills</a></li>
<li><a href="#projects" class="menu-btn">Projects</a></li>
<li><a href="#achievements" class="menu-btn">Achievements</a></li>
<li><a href="#contact" class="menu-btn">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<section class="home" id="home">
<div class="max-width">
<div class="home-content">
<div class="text-1">
Hello, my name is</div>
<div class="text-2">
Saurabh Kishor</div>
<div class="text-3">
And I'm a <span class="typing"></span></div>
<a href="#about">Know More About Me</a>
</div>
</div>
</section>
<section class="about" id="about" style="background-color: rgb(200, 215, 232);">
<div class="max-width">
<h2 class="title">
About me</h2>
<div class="about-content">
<div class="column_left1" alt="Profile Img" style="border-radius:10%; height: 405px;width: 350px;padding-right: 2px;">
<!-- <img src="https://cdn.glitch.global/21ddaf5f-9e69-4781-a50f-4b9a0fb18e20/-97tmpy.jpg?v=1642857013925" style="border-radius:50%;">-->
<!-- <img src = "https://raw.githubusercontent.com/Saurabh-pec/Welcome_to_My_Website./master/sau333.jpg?token=GHSAT0AAAAAABTMO64O7RGWQQVQSQNC6MAOYSROAZQ" class="sk-image-resize" alt ="profile_Img" style="border-radius:10%; height: 405px;width: 350px;padding-right: 2px;">-->
<img src = "https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/sau333.jpg" class="sk-image-resize" alt ="profile_Img" style="border-radius:10%; height: 405px;width: 350px;padding-right: 2px;">
<!--<img src='./img.html' class="sk-image-resize" alt ="profile_Img">-->
<!--<img src=".\C:\xampp\htdocs\MySite\asset\sau222.jpeg">-->
</div>
<!-- <div class='about-tabs' style="margin: auto;width: 65%;border: 3px #73AD21;padding: 15px;" >
<div class="tab-container">
<div class='each-tab'>
<div class='tab-logo'>
<div class='hexagon' style=" font-size: 45px;">
<i class='fas fa-flag' style= "padding: 40%; color: white;"></i>
[DIV].style.visibility='hidden'
</div>
</div>
<div class='tab-text'>
<div class='about-label' style="display: inline-block;">
<b> Leadership Skills</b>
</div>
<div class='about-label-details'style="display:inline-block;">
Motivate a team to do their best work
</div>
</div>
</div>
</div>
<div class="tab-container">
<div class='each-tab'>
<div class='tab-logo'>
<div class='hexagon'>
<i class="fas fa-lightbulb" style="font-size: 34px; color:white;"></i>
</div>
</div>
<div class='tab-text'>
<div class='about-label'style="display:inline-block;">
<b> Problem Solving </b>
</div>
<div class='about-label-details'style="display:inline-block;">
Coming up with an intelligent solution
</div>
</div>
</div>
</div>
<div class="tab-container">
<div class='each-tab'>
<div class='tab-logo'>
<div class='hexagon'>
<i class="fas fa-stopwatch" style="font-size: 34px; color: white;"></i>
</div>
</div>
<div class='tab-text'>
<div class='about-label'style="display:inline-block;">
<b> Time Management </b>
</div>
<div class='about-label-details'style="display:inline-block;">
<p>Ability to use your time productively</p>
</div>
</div>
</div>
</div>
<div class="tab-container">
<div class='each-tab'>
<div class='tab-logo'>
<div class='hexagon'>
<img
src='https://mayank0255.github.io/assets/images/icons8-communication-skill-96.png'alt='Communication Skills'style="width: 43px"
>
</div>
</div>
<div class='tab-text'>
<div class='about-label'style="display:inline-block;padding: 5px;">
<b> Communication Skills </b>
</div>
<div class='about-label-details'style="display:inline-block;">
<p> To persuade others to listen to your ideas</p>
</div>
</div>
</div>
</div>
</div> -->
<div class="col-md-6 col-lg-6 pl-md-5 py-5">
<div class="row justify-content-start pb-3">
<div class="col-md-12 heading-section ftco-animate">
<div class="column right">
<div class="text">
I'm a Saurabh <span class="typing-2"></span></div>
<p>
I am a constant learner and very enthusiastic for working with new people and new technologies.
I
have good problem solving skills.I am Software Developer and I am also into web development. Currently i am
exploring more into new frameworks.
I believe in team work.I am
determined to give my best at everything that I will be assigned to.</p>
<a href="#">Download
CV</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="education" >
<div class="max-width">
<h2 class="title">
Educational Qualifications</h2>
<div class="serv-content">
<div class="card">
<div class="box ">
<i class="fas fa-chart-line "></i>
<div class="text">
College</div>
<p>
Pondicherry Technological University, Pondicherry (India)
<br>
➤ Stream: B.tech (Computer Science and Engg.) <br>
➤ Passing Year: 2023<br>
➤ CGPA: 8.87/10 (till 3rd sem)
</p>
</div>
</div>
<div class="card">
<div class="box ">
<i class="fas fa-chart-line "></i>
<div class="text">
Class XII </div>
<p>
M.V College, Buxar <br>(VKSU, Bihar)<br>
➤ Stream: Science<br>
➤ Board: State Board (BSEB) <br>
➤ Passing Year: 2018<br>
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line "></i>
<div class="text">
Class X </div>
<p>
St. Marry's High School, Buxar<br> (Bihar)<br>
➤ Board: State Board (BSEB) <br>
➤ Passing Year: 2016<br>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="experience" id="experience">
<div class="max-width">
<h2 class="title">
Experiences</h2>
<div class="serv-content">
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Web Development Internshala Trainings, Online</div>
<p>
<br>
(Sep 2021 - Nov 2021)<br> <br>
Successfully completed a 8 weeks online certified training on Web Development.
The training consisted of HTML, CSS, Bootstrap, DBMS, PHP, JS, React, and Final Project modules.
In the final assessment, I scored 53% marks.<br>
<a href="https://trainings.internshala.com/s/v/204532/e6cebf3c">Achievements</a>
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Data Science and Business Analytic Intern</div>
<p><br>
The Sparks Foundation<br><br>
(Oct 2021 - Nov 2021)<br><br>
my task was to do prediction and test or train data using supervised machine learning in python.<br>
I learn many concepts in machine learning, python's library like Matlab, pandas.<br>
<a href="https://links-truecertificates.s3.ap-south-1.amazonaws.com/published/2022-42-01/FRPK3BYKTJ.png">Achievements</a><br>
<a href="https://github.com/Saurabh-pec/Prediction-Using-Supervised-Ml">Source</a>
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Internship & Job Preparation Trainings</div>
<p>
<br>
Internshala Trainings, Online<br><br>
Nov 2021 - Nov 2021 <br><br>
Successfully completed a 4 weeks online certified training on Internship & Job Preparation.
The training consisted of Getting Started with the Job Hunt, Building up your Gears, Going at the Front,
and The Final Project modules.
In the final assessment, I scored 80% marks.<br>
<a href="https://trainings.internshala.com/s/v/193562/564320f3">Achievements</a><br>
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Web Developer</div>
<p>
College Club
<br>
Made a website for a tech club of college. Techn used
for this website was HTML ,CSS Javascript , and PHP.
<!--Link: <a href="https://bit.ly/3oFTm29">Website</a>-->
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Volunteer</div>
<p>Bhumi Ambassador -India <br><br>
<br>
My task was awareness creation in socities regarding "National Girl Child Awareness Campaign."
Spread awareness among people about all the inequalities girls face in the country.
Promote awareness about the rights of a girl child.
Increase awareness on the importance of girls’ education, health, and nutrition.
<a href="https://s3-ap-southeast-1.amazonaws.com/internshala-uploads/student_certificates/61ee3ba782d791643002791.png">Achievements</a><br>
</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">
Campus Ambassador</div>
<p>
<br>
I Was Campus Ambassador for various organizations like Internshala, career 360.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="skills" id="skills" style="background-color: beige;">
<div class="max-width">
<h2 class="title">
My skills</h2>
<div class="skills-content">
<div class="column left">
<div class="text">
My creative skills & experiences.</div>
<p>
Hey everyone Saurabh Kishor here!!!
An individual eager to learn and explore new fields of life and technology, with good listening skills and learning abilities.
Enthusiastic and curious to learn new skills!!
Being from a tech background I am interested in programming ( C/C++, java) Data Structures and competitive programming.
I am also a full stack developer. You can check out my projects at GitHub .
</p>
Link: <a href="https://github.com/Saurabh-pec/">Saurabh-pec</a>
</div>
<div class="column right">
<!--<div class="row pt-5">-->
<div class="col-md-3 mb-3">
<div class="section-heading">
<h2>My <strong>Skills</strong></h2>
</div>
</div><br>
<div class="col-md-9">
<h3>Programming Languages</h3><hr>
<div class="skill">
<h4>C/C++ (Intermediate) | Java (Intermediate) | Python (Intermediate) </h4>
</div>
<br>
<h3>Web Development</h3><hr>
<div class="skill">
<h4>HTML 5 | CSS 3 | JS | MySql </h4>
</div>
<br>
<h3>Server Side scripting</h3><hr>
<div class="skill">
<h4>PHP</h4>
</div>
<br>
<h3>Mobile App developement</h3><hr>
<div class="skill">
<h4>Android</h4>
</div>
<br>
<h3>RDBMS</h3><hr>
<div class="skill">
<h4>MariaDB, MS-Access, JDBC</h4>
</div>
<br>
<h3>Other</h3><hr>
<div class="skill">
<h4>Git | Shell Scripting</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="achievements" id="achievements">
<h2 class="title">My Achievements</h2>
<!---- <div class="max-width">
<div class="carousel owl-carousel">
<div class="card">-->
<!--<div class="box">
<div class="text">
AMITECHFIESTA 2K20</div>
<p>
Participated in online coding competition conducted by Amity coding club. It was a three
round coding challenge . After three rounds my rank was- Overall Rank-179</p>
</div>
</div>
<div class="card">
<div class="box">
<div class="text">
Hackerrank</div>
<p>
5 star in C++<br>
5 star in Problem Solving<br>
5 star in C
</p>
</div>
</div>
<div class="card">
<div class="box">
<div class="text">
Codechef</div>
<p>
3 star at codechef(1681)<br>
1184 rating at codeforces
</p>
</div>
</div>
<div class="card">
<div class="box">
<div class="text">
Open Source Contribution</div>
<p>
Participated in Hacktoberfest organized by DigitalOcean.</p>
</div>
</div>
<div class="card">
<div class="box">
<div class="text">
Internshala</div>
<p>
Scored 100% in final test of Programming in C/C++ by Internshala. </p>
</div>
</div>
<div class="card">
<div class="box">
<div class="text">
AWS Scholarship 2020</div>
<p>
Won AWS Scholarship and was provided free training and E-books on AWS Cloud by Vinsys.</p>
</div>
</div>-->
<div class ="center">
<h3>Introduction to Data Analytics for Business <b>(Coursera)</b></h3>
<div class="skill">
<a href="https://www.coursera.org/account/accomplishments/verify/R37PRK67LKDU?utm_source=link&utm_medium=certificate&utm_content=cert_image&utm_campaign=pdf_header_button&utm_product=course" target="_blank" style="color: blueviolet;">Certificate</a><br>
</div><hr>
<br>
<h3>Principles of Management <b>(NPTEL)</b></h3>
<div class="skill5">
<a href="https://drive.google.com/file/d/1XxQ-si_lmEwBA3eyrXam7S3Q2PWGFyXp/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>The Ethical Hacking<b>(Udemy)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1l-KzpbRwQpdx2MgL2zujOaJ2lbdK50VC/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>Psychology of Stress, Health and Well-being<b>(NPTEL)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1mckvRBi1nsUFCvdKB0_coSB677sAsH87/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>Essential hacking: Cyber range practice <b>(Literary Club & Design Club of PEC)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/16HiHZsaWDqoK9oi4_uVZAM79TVRlPPyl/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>𝛑 Approximation Day Quiz</h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1MAeZNYgy9dzVnQrRqDc6iT_de8N7_H4v/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>SQL Fundamentals course <b>(SoloLearn)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1JNN5FaJGIj0-EgRbNX8BgIBT20Mi2b6c/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>Learn to Design your own Solar Home System <b>(Energy Swaraj Foundation)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1A8pTgan8VvS4i7OW4F01DNKfuWHTtlZL/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr><br>
<h3>Essential hacking: Cyber range practice <b>(Literary Club & Design Club of PEC)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/16HiHZsaWDqoK9oi4_uVZAM79TVRlPPyl/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr><br>
<h3>C Tutorial course<b>(SoloLearn)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1MbWTnThB8ewkxwzeEBgoWhgTnvHcb73J/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr>
<br>
<h3>HTML Fundamentals course <b>(SoloLearn)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1VA0_ETrYgP3mV8VmzVKOw7ILbKeNLIZt/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr><br>
<h3>Python3 Crash Course <b>(Udemy)</b></h3>
<div class="skill">
<a href="https://drive.google.com/file/d/1sFuYhHKv_GIuMhj1wUelRwsYnhomyfFv/view?usp=sharing" target="_blank" style="color: blueviolet;"> Certificate</a><br>
</div><hr><br>
</section>
<section class="projects" id="projects">
<div class="max-width">
<h2 class="title">
My Projects</h2>
<div class="carousel owl-carousel">
<div class="carousel-item active">
<!--<img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2FScreenshot%20(39).png?v=1617306163387"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/MyWeb.jpg?token=GHSAT0AAAAAABTNFV4YFVNOZP34V4OMSCGOYSSXW5A"
alt="MyWeb Website">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/My_Personal_Website" class="button">View Github</a>
</div>
</div>
<div class="carousel-item active">
<!-- <img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2Fpp1.png?v=1607352628956"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/College-Management-System.jpg?token=GHSAT0AAAAAABTNFV4YZBNFMANXPNJX26T6YSSXWNQ"
alt="College-Management-System">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/College-Management-system-Application" class="button">View Github</a>
<!--<a href="https://github.com/Saurabh-pec/College-Management-system-Application/blob/main/README.md" class="button">Read More</a>-->
</div>
</div>
<div class="carousel-item">
<!--<img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2Fpp2.png?v=1607352633851"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/Calculator.jpg?token=GHSAT0AAAAAABTNFV4Z6Z7B6BWSAICXAHBEYSSXWSA"
alt="Calculator">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/Calculator-javaProject" class="button">View Github</a>
</div>
</div>
<div class="carousel-item">
<!--<img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2FScreenshot%20(41).png?v=1617306278983"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/ML.jpg?token=GHSAT0AAAAAABTNFV4ZEVMSHCFE5KVEF4RAYSSXWXA"
alt="Prediction-Using-Supervised-Ml">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/Prediction-Using-Supervised-Ml" class="button">View Github</a>
</div>
</div>
<div class="carousel-item">
<!--<img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2FScreenshot%20(41).png?v=1617306278983"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/e_commerce.jpeg?token=GHSAT0AAAAAABTNFV4YDROVGEC6266BSGPKYSSXV6Q"
alt="E-commerce">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/Ecommerce-Management-DBMS_Project-" class="button">View Github</a>
</div>
</div>
<div class="carousel-item">
<!--<img class="title-image img-fluid img-thumbnail text-center"
src="https://cdn.glitch.com/6ae7a7fc-8884-4ea6-827b-8a1edaa47a61%2FScreenshot%20(41).png?v=1617306278983"
alt="Website">-->
<img class="title-image img-fluid img-thumbnail text-center" style="width: 355px;height: 205px;"
src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/p/Music.png?token=GHSAT0AAAAAABTNFV4YAJSK4B5SGSYJ6LQYYSSXWJA"
alt="Music">
<div style="display:flex";>
<a href="https://github.com/Saurabh-pec/MusicPlayerApp" class="button">View Github</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title" style="color:white">
Links</h2>
<div class="row">
<div class="various col-lg-3 col-md-4 col-sm-6" style="display: flex;">
<a href="https://github.com/Saurabh-pec"target="_blank" style="color:white;font-size:25px;"><i class="fab fa-github colo" style="color:white;"></i> Github</a>
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://www.linkedin.com/in/saurabh-k-134b37199/" target="_blank" style="color:white;font-size:25px;"><i class="fab fa-linkedin colo" style="color:white;"></i> LinkedIN</a>
</div>
<div>
<a href="mailto:saurabhkishor@pec.edu?Subject=regarding website" style="width: 23px; height: 23px;font-size: 24px; color: white; padding: 3px;margin-right: 2px;"> <i class="far fa-envelope"></i>Email</a>
</div>
<div>
<a href="https://web.whatsapp.com/send?phone=918252681059&text=Hi, Saurabh. I just visited your site." style="width: 23px; height: 23px; color: white;font-size: 24px;padding: 3px;margin-right: 2px;"><img src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/a6f4f60d7b98fbc35bb4746fc4388625657ee4d0/asset/WhatsApp-Logo.wine%20(1).svg" style="width: 23px; height: 23px;font-size: 24px;">Whatsapp</a>
<!-- <a href="https://web.whatsapp.com/send?phone=918252681059&text=Hi, Saurabh. I just visited your site." style="width: 23px; height: 23px; color: white;font-size: 24px;padding: 3px;margin-right: 2px;"><img src="https://raw.githubusercontent.com/Saurabh-pec/My_Personal_Website/main/asset/wa.jpg" style="width: 23px; height: 23px;font-size: 24px;">Whatsapp</a>-->
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://www.hackerrank.com/saurabhkishor " target="_blank" style="color:white;font-size:25px;"><i class="fab fa-hackerrank colo"></i> HackerRank</a>
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://twitter.com/Saurabh8065" target="_blank" style="color:white; font-size:25px;"><i class="fab fa-twitter colo"></i> Twitter</a>
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://leetcode.com/abhinav221sk/" target="_blank" style="color:white;font-size:25px;"><i class="fab fa-leetcode"></i> Leetcode</a>
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://www.sololearn.com/profile/15656022" target="_blank" style="color:white;font-size:25px;"> SoloLearn</a>
</div>
<div class="various col-lg-3 col-md-4 col-sm-6">
<a href="https://medium.com/@saurabh221" target="_blank" style="color:white;font-size:25px;"><i class="fab fa-medium colo"></i>Medium</a>
</div>
</div>
</div>
</div>
</section>
<hr>
<footer>
<p><strong>© Copyright 2020 Saurabh Kishor Portfolio</strong></p>
</footer>
<script src="script.js"></script>
</body>
</html>