-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
647 lines (581 loc) · 24.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="icon" type="image/png" href="assets\images\sanket.png">
<link
href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900"
rel="stylesheet"
/>
<title>Sanket Mote Resume</title>
<!-- Bootstrap CSS -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/owl.css" />
<link rel="stylesheet" href="assets/css/lightbox.css" />
<style>
/* Set the size of the div element that contains the map */
#map {
height: 300px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
</head>
<!-- -------------------------------BODY------------------------------ -->
<body>
<div id="page-wraper">
<!-- -------------------------------------------------Sidebar Menu-- -->
<div class="responsive-nav">
<i class="fa fa-bars" id="menu-toggle"></i>
<div id="menu" class="menu">
<i class="fa fa-times" id="menu-close"></i>
<div class="container">
<div class="image">
<a href="#"><img src="assets/images/sanket.png" alt="Image" /></a>
</div>
<div class="author-content">
<h4>Sanket Mote</h4>
<span>Web Designer | Competitive Programmer</span>
</div>
<nav class="main-nav" role="navigation">
<ul class="main-menu">
<li><a href="#section1">A little about Me</a></li>
<li><a href="#section2">Certifications</a></li>
<li><a href="#section3">What I’m good at</a></li>
<li><a href="#section4">Projects</a></li>
<li><a href="#section5">Extracurricular</a></li>
<li><a href="#section6">Let's Connect</a></li>
</ul>
</nav>
<div class="copyright-text">
<p>Copyright (c) 2020 Sanket Mote</p>
</div>
</div>
</div>
</div>
<!-- ----------------------------section 1 about me------------------------------------ -->
<div id="page-wraper-1">
<section class="section about-me" data-section="section1">
<div class="container">
<div class="section-heading-1">
<h2>A little about Me</h2>
<span>Hello Friends, I am Sanket Mote, Third Year Undergradute Student of Computer Science Engineering at Walchand College of Engineering, Sangli.
I am passionate about learning new skills and new technologies. Skilled in Python , C , C++ ,HTML and CSS,I have completed some projects.
Through projects, I have some hands on experience working with Python ,C++ , and Web development.I strongly believe in “Learning gives creativity, Creativity leads to thinking, Thinking leads to knowledge and knowledge makes you great" -by Dr. APJ Abdul Kalam.
</span>
</div>
<div class="isotope-item-0">
<div class="isotope-name text-white">
College Ambassador
</div>
<div class="isotope-description">
<h3 style="color: green;">
Techfest IIT Bombay
<!-- <span class="tm-title-small">(2020 JUNE to Present)</span> -->
</h3>
<p class="mb-0 text-color">
I have worked as College Ambassador at Techfest IIT Bombay.
</p>
</div>
</div>
<div class="isotope-item-0">
<div class="isotope-name text-white">
Web Developer
</div>
<div class="isotope-description">
<h3 style="color: green;">
WCE ACSES CLUB
<!-- <span class="tm-title-small">(2020 JUNE to Present)</span> -->
</h3>
<p class="mb-0 text-color">
Assistant Web Developer at WCE ACSES CLUB.
</p>
</div>
</div>
<div class="isotope-item-0">
<div class="isotope-name text-white">
Blogs Team
</div>
<div class="isotope-description">
<h3 style="color: green;">
WCE ACM Student Chapter
<!-- <span class="tm-title-small">(2020 JUNE to Present)</span> -->
</h3>
<p class="mb-0 text-color">
Assistent Content and Blogs team of WCE ACM Student Chapter.
</p>
</div>
</div>
<!-- <div class="isotope-item-0">
<div class="isotope-name text-white">
Member
</div>
<div class="isotope-description">
<h3 style="color: green;">
WCE Vulcan Robotics Club -->
<!-- <span class="tm-title-small">(2020 JUNE to Present)</span> -->
<!-- </h3>
<p class="mb-0 text-color">
Member of WCE Vulcan Robotics Club.
</p>
</div>
</div> -->
<!-- <div class="isotope-item-0">
<div class="isotope-name text-white">
ISP 19
</div>
<div class="isotope-description">
<h3 style="color: green;">
Internshala -->
<!-- <span class="tm-title-small">(2020 JUNE to Present)</span> -->
<!-- </h3>
<p class="mb-0 text-color">
I have worked as Student Partner at Internshala.
</p>
</div>
</div> -->
</div>
</section>
</div>
<!-- ----------------------------section 2 Certifications----------------------------------- -->
<section class="section about-me" data-section="section2">
<div class="container">
<div class="section-heading">
<h2>Certifications</h2>
</div>
<!-- certificate 1------------------ -->
<div class="left-image-post">
<div class="row">
<div class="col-md-6">
<div class="left-image">
<img src="assets/images/python.JPG" alt="‘Python for Everybody’ By University of Michigan certificate" />
</div>
</div>
<div class="col-md-6">
<div class="right-text">
<h4>‘Python for Everybody’ By University of Michigan</h4>
<p>
<li>Programming for Everybody (Starting with Python)</li>
<li>Python Data Structures</li>
<li>Using Python to Access Web Data</li>
<li>Using Databases with Python</li>
<li>Capstone: Retrieving,Processing, and Visualizing Data with Python</li>
</p>
</div>
</div>
</div>
</div>
<!-- certificate 2------------------ -->
<div class="max-screen">
<div class="right-image-post">
<div class="row">
<div class="col-md-6">
<div class="left-text">
<h4>‘Web Design for Everybody’ By University of Michigan</h4>
<p>
<li>Introduction to HTML5</li>
<li>Introduction to CSS3</li>
<li>Interactivity with JavaScript</li>
<li>Advanced Styling with Responsive Design</li>
</p>
</div>
</div>
<div class="col-md-6">
<div class="right-image">
<img src="assets/images/web.jpg" alt="‘Web Design for Everybody’ by University of Michigan certificate" />
</div>
</div>
</div>
</div>
</div>
<div class="mobile">
<div class="line-dec-1"></div>
<div class="left-image-post">
<div class="row">
<div class="col-md-6">
<div class="right-image">
<img src="assets/images/web.jpg" alt="‘Web Design for Everybody’ By University of Michigan certificate" />
</div>
</div>
<div class="col-md-6">
<div class="left-text">
<h4>‘Web Design for Everybody’ By University of Michigan</h4>
<p>
<li>Introduction to HTML5</li>
<li>Introduction to CSS3</li>
<li>Interactivity with JavaScript</li>
<li>Advanced Styling with Responsive Design</li>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- certificate 3------------------ -->
<div class="mobile">
<div class="line-dec-1"></div>
</div>
<div class="left-image-post-1">
<div class="row">
<div class="col-md-6">
<div class="left-image">
<img src="assets/images/it.jpg" alt="‘Google IT Support’ By Google certificate" />
</div>
</div>
<div class="col-md-6">
<div class="right-text">
<h4>‘Google IT Support’ By Google</h4>
<p>
<li>Technical Support Fundamentals</li>
<li>The Bits and Bytes of Computer Networking</li>
<li>Operating Systems and You: Becoming a Power User</li>
<!-- <li>System Administration and IT Infrastructure Services</li>
<li>IT Security: Defense against the digital dark arts</li> -->
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ----------------------------section 3 What I’m good at----------------------------------- -->
<section class="section my-services" data-section="section3">
<div class="container">
<div class="section-heading">
<h2>What I’m good at?</h2>
</div>
<div class="row">
<div class="col-md-6">
<div class="service-item">
<div class="first-service-icon service-icon"></div>
<h4>HTML5 & CSS3 & JavaScript</h4>
<p>
</p>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="second-service-icon service-icon"></div>
<h4>C language</h4>
<p>
<br>
</p>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="third-service-icon service-icon"></div>
<h4>C++ Language</h4>
<p>
</p>
</div>
</div>
<div class="col-md-6">
<div class="service-item">
<div class="fourth-service-icon service-icon"></div>
<h4>Python</h4>
<p>
</p>
</div>
</div>
<!--
<div class="col-md-6">
<div class="service-item">
<div class="fourth-service-icon service-icon"></div>
<h4>Node Js</h4>
<p>
</p>
</div>
</div> -->
<!--
<div class="col-md-6">
<div class="service-item">
<div class="fourth-service-icon service-icon"></div>
<h4>Flutter</h4>
<p>
</p>
</div>
</div> -->
</div>
</div>
</section>
<!-- ----------------------------section 4 Projects----------------------------------- -->
<section class="section my-work" data-section="section4">
<div class="container">
<div class="section-heading">
<h2>PROJECTS</h2>
</div>
<div class="row">
<!-- First Project COVID19 Data Analysis-->
<div class="col-md-6" style="flex: none; max-width: none;">
<div class="service-item-2">
<figure class="snip1321">
<a href="https://github.com/sanketmote/COVID19-Data-Analysis-and-Visualization" target="_blank">
<img
src="assets/images/covid3.png"
alt="COVID19-Data-Analysis-and-Visualization"
/>
<figcaption>
<span>In this project COVID 19 dataset is analyzed and result is
visualized. This project is done in Python using Pandas and
Seaborn</span>
</figcaption>
</a>
</figure>
</div>
</div>
<!-- seconnd project Portfolio Website -->
<div class="col-md-6" style="flex: none; max-width: none;">
<div class="service-item-2">
<figure class="snip1321">
<a href="#">
<img
src="assets/images/portolio_website.JPG"
alt="portfolio_website"
/>
<figcaption>
<span>Created an interactive portfolio website using
HTML , CSS ,JS and Bootstrap.</span>
</figcaption>
</a>
</figure>
</div>
</div>
<!-- Third Project : WCESPACE -->
<div class="col-md-6" style="flex: none; max-width: none;">
<div class="service-item-2">
<figure class="snip1321">
<a href="https://github.com/pavanshinde7494/WCE-SPACE" target="_blank">
<img
src="assets/images/wcespace.PNG"
alt="Matching-Pair-game"
/>
<figcaption>
<span>Developed a web application for students to download
academic books according to their branch and year of study,
from wcespace website <a href="https://wcespace.herokuapp.com/home" target="_blank">Link</a> </span>
</figcaption>
</a>
</figure>
</div>
</div>
<!-- Fourth Project : ‘Matching Pairs’ Game -->
<div class="col-md-6" style="flex: none; max-width: none;">
<div class="service-item-2">
<figure class="snip1321">
<a href=" https://github.com/sanketmote/Matching-Pair-game" target="_blank">
<img
src="assets/images/match_paring.JPG"
alt="Matching-Pair-game"
/>
<figcaption>
<span>This game requires players to face up tiles and match similar
pair of tiles. It is built using Python and Pygame library.</span>
</figcaption>
</a>
</figure>
</div>
</div>
<!-- Fifth project : Calculator using C++ -->
<!-- <div class="col-md-6" style="flex: none; max-width: none;">
<div class="service-item-2">
<figure class="snip1321">
<a href="none" target="_blank">
<img
src="assets/images/calc.jpg"
alt="Calculator"
/>
<figcaption>
<span>Created a Calculator application using C++.</span>
</figcaption>
</a>
</figure>
</div>
</div> -->
</div>
</div>
</section>
<!-- ----------------------------section 5 Extracurricular----------------------------------- -->
<section class="section my-services" data-section="section5">
<div class="container">
<div class="section-heading">
<h2 class="mb-4">Achievement & Extracurricular</h2>
</div>
<div class="row">
<div class="col-lg-6 col-12">
<div class="timeline">
<div class="act">
<div class="seq-1">
<span>1</span>
</div>
<div class="info">
<h3>Arranged workshops for students under WeCare and Heal initiative by Techfest IIT Bombay.</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>2</span>
</div>
<div class="info">
<h3>Writes technical blogs on Medium platform with smwrite username. <a href="https://smwrite.medium.com/" target="_blank">[Link]</a></h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>3</span>
</div>
<div class="info">
<h3>Participated In ‘Combined Annual
Training Camp NCC’ by 19th
Maharashtra Battalion Unit Karad.</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>4</span>
</div>
<div class="info">
<h3 style="margin-top: 5%;">NCC ‘A’ Certificate completed.</h3>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="act">
<div class="seq-1">
<span>5</span>
</div>
<div class="info">
<h3>Participated in e-Yantra Competition and CRCE UnScript Rookie's Hackathon 2020.
</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>6</span>
</div>
<div class="info">
<h3>Earned 5 star badge in Python on HackerRank.
</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>7</span>
</div>
<div class="info">
<h3>Earned 5 star badge in Problem Solving on HackerRank.</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>8</span>
</div>
<div class="info">
<h3>Participated in Google KickStart Competition-Round E with Global Rank 1754.</h3>
</div>
</div>
<div class="act">
<div class="seq-1">
<span>9</span>
</div>
<div class="info">
<h3>Earned 5 star badge in C++ on HackerRank.</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ----------------------------section 6 PROFILES----------------------------------- -->
<section class="section my-services" data-section="section6">
<div class="container">
<div class="section-heading">
<h2>Let's Connect</h2>
</div>
<div style="margin-bottom: 9%; margin-top: 2%;">
<a href="https://www.hackerrank.com/sanketmote" target="_blank"><img class="profile" src="assets\images\hackerrank.jpeg" alt="hackerrank"></a>
<a href="https://github.com/sanketmote" target="_blank"><img class="profile" src="assets\images\github.png" alt="github"></a>
<a href="https://www.codechef.com/users/sanketmote" target="_blank"><img class="profile" style="margin-left: 1%; background-color: white;" src="assets\images\codechef.jpg" alt="codechef"></a>
<a href="https://www.hackerearth.com/@sanketmote" target="_blank"><img class="profile" style="margin-right: 1%;" src="assets\images\hackerearth.jpg" alt="hackerearth"></a>
</div>
<div style="margin-bottom: 9%; margin-top: 2%;">
<a href="https://www.facebook.com/sanketmote99" target="_blank"><img class="profile" style="margin-left:1%;" src="assets\images\facebook.png" alt="facebook"></a>
<a href="https://www.instagram.com/sanketmote100/" target="_blank"><img class="profile" src="assets\images\insta.png" alt="insta"></a>
<a href="https://www.linkedin.com/in/sanketmote" target="_blank"><img class="profile" src="assets\images\linkedin.jpg" alt="linkedin"></a>
<a href="https://twitter.com/SanketMote" target="_blank"><img class="profile" style="margin-right: .10%;" src="assets\images\Twitter.png" alt="Twitter"></a>
</div>
<!-- <div>
<a href="https://codeforces.com/profile/sanketmote " target="_blank"><img style="margin-right: 3%; width: 15%;" src="assets\images\codeforce.jpg"> </a>
<a href="https://leetcode.com/sanketmote/ " target="_blank"><img style="margin-right: 3%; width: 15%;" src="assets\images\LeetCode_logo.png"></a>
</div> -->
<img
src="assets/images/apj.png"
alt="Dr. APJ Abdul Kalam"
/>
</div>
</section>
<!-- Scripts -->
<!-- Bootstrap core JavaScript -->
<script src="jquery/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/isotope.min.js"></script>
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/lightbox.js"></script>
<script src="assets/js/custom.js"></script>
<script>
//according to loftblog tut
$(".main-menu li:first").addClass("active");
var showSection = function showSection(section, isAnimate) {
var direction = section.replace(/#/, ""),
reqSection = $(".section").filter(
'[data-section="' + direction + '"]'
),
reqSectionPos = reqSection.offset().top - 0;
if (isAnimate) {
$("body, html").animate(
{
scrollTop: reqSectionPos
},
800
);
} else {
$("body, html").scrollTop(reqSectionPos);
}
};
var checkSection = function checkSection() {
$(".section").each(function() {
var $this = $(this),
topEdge = $this.offset().top - 80,
bottomEdge = topEdge + $this.height(),
wScroll = $(window).scrollTop();
if (topEdge < wScroll && bottomEdge > wScroll) {
var currentId = $this.data("section"),
reqLink = $("a").filter("[href*=\\#" + currentId + "]");
reqLink
.closest("li")
.addClass("active")
.siblings()
.removeClass("active");
}
});
};
$(".main-menu").on("click", "a", function(e) {
e.preventDefault();
showSection($(this).attr("href"), true);
});
$(window).scroll(function() {
checkSection();
});
</script>
</body>
</html>