-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
655 lines (630 loc) · 22.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Prashant Sharma || Home</title>
<meta name="description" content="Official Portfolio Website of Prashant Sharma, Fourth Year Undergraduate Student, highly
enthusiastic about programming and creating things">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
crossorigin="anonymous" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" href="./images/GNlogo.png" type="icon">
</head>
<body>
<!-- navbar -->
<nav class="nav" id="id" id="home">
<div class="nav-center">
<!-- logo -->
<div class="nav-header">
<button class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- logo -->
<!-- nav-links -->
<div>
<ul class="nav-links">
<li>
<a href="#index">home</a>
</li>
<li>
<a href="#about">about</a>
</li>
<li>
<a href="#projects">projects</a>
</li>
<li>
<a href="#blogs">blogs</a>
</li>
<li>
<a href="#contact">contact</a>
</li>
</ul>
</div>
<!-- nav-links -->
</div>
</nav>
<!-- navbar -->
<!-- sidebar -->
<aside class="sidebar" id="sidebar">
<div>
<button class="close-btn" id="close-btn">
<i class="fas fa-times"></i>
</button>
<!-- nav-links -->
<ul class="sidebar-links">
<li>
<a href="#index" onclick="getElementById('close-btn').click()">home</a>
</li>
<li>
<a href="#about" onclick="getElementById('close-btn').click()">about</a>
</li>
<li>
<a href="#projects" onclick="getElementById('close-btn').click()">projects</a>
</li>
<li>
<a href="#blogs" onclick="getElementById('close-btn').click()">blogs</a>
</li>
<li>
<a href="#contact" onclick="getElementById('close-btn').click()">contact</a>
</li>
</ul>
<!-- nav-links -->
<!-- social links -->
<ul class="social-icons">
<li>
<a href="https://twitter.com/thisisgarv" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/garvnanwani/" target="_blank" rel="noopener noreferrer"
class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://github.com/Garvnanwani" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://dev.to/thisisgarv" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-dev"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/garv_nanwani/" target="_blank" rel="noopener noreferrer"
class="social-icon">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<!-- social-links -->
</div>
</aside>
<!-- sidebar -->
<!-- header -->
<header class="hero">
<div class="section-center hero-center">
<article class="hero-info">
<div class="underline"></div>
<h1>i'm Prashant</h1>
<h4>Full Stack Web Developer And Designer</h4>
<a href="#" class="btn hero-btn">Contact me</a>
<!-- social icons -->
<ul class="social-icons hero-icons">
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer"
class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-dev"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer"
class="social-icon">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</article>
<article class="hero-img">
<img src="./images/boy.jpg" class="hero-photo" alt="Prashant Sharma" />
</article>
</div>
</header>
<!-- end of header -->
<!-- about -->
<section class="section about" id="about">
<div class="section-center about-center">
<!-- about img -->
<article class="about-img">
<img src="./images/boy.jpg" class="hero-photo" alt="Prashant Sharma" />
</article>
<!-- about info -->
<article class="about-info">
<!-- section title -->
<div class="section-title about-title">
<h2>about</h2>
<div class="underline"></div>
</div>
<!--end of section title -->
<p>
Hey, My name is Prashant Sharma and I am currently a Second Year Undergraduate Student at Griet College,
</p>
<p>
My field of Interests are Development and Design.
</p>
<p>
I have been coding for around 3 years now. I love to design websites and build full stack applications using
MERN stack preferably.
</p>
<a href="#contact" class="btn">Connect with me</a>
</article>
</div>
</section>
<!-- end of about -->
<!-- projects -->
<section class="section projects" id="projects">
<!-- section title -->
<div class="section-title">
<h2 class="section-primary">Projects</h2>
<div class="underline"></div>
</div>
<!--end of section title -->
<div class="section-center projects-center">
<div class="card-list">
<div class="project-card" id="card-1">
<div class="project-img">
<img src="./projects/project-1.jpg" alt="blog project">
</div>
<div class="header">
<h2>Blogging Site</h2>
<div class="title">Tech Used - Django Html Css</div>
</div>
<div class="colorband"></div>
<div class="desc">Website where I can host my blogs. Made with Django backend, and all the user posts are
managed through admin.</div>
<div class="actions">
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="far fa-window-restore"></i>
<span>
Live Site
</span>
</span>
</button>
</a>
<a href="https://www.incorebmedia.com" target="_blank"
rel="noopener noreferrer">
<button>
<span>
<i class="fab fa-github"></i>
<span>
Repo Link
</span>
</span>
</button>
</a>
</div>
</div>
<div class="project-card" id="card-2">
<div class="project-img">
<img src="./projects/project-2.png" alt="weather-app project">
</div>
<div class="header">
<h2>Weather PWA App</h2>
<div class="title">Tech Used - React, PWA</div>
</div>
<div class="colorband"></div>
<div class="desc"> A PWA weather app which you can install on your phones as well as desktop. Functions
properly on every platform and loads an offline page when the user is offline.
</div>
<div class="actions">
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="far fa-window-restore"></i>
<span>
Live Site
</span>
</span>
</button>
</a>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="fab fa-github-alt"></i>
<span>
Repo Link
</span>
</span>
</button>
</a>
</div>
</div>
<div class="project-card" id="card-3">
<div class="project-img">
<img src="./projects/project-3.jpg" alt="Dictionary project">
</div>
<div class="header">
<h2>Dictionary App</h2>
<div class="title">Tech Used - Html, CSS and Javascript</div>
</div>
<div class="colorband"></div>
<div class="desc">Dictionary wherein you can find the meaning of any word, gives suggestions and also has
feature for audio pronunciation of the word.
</div>
<div class="actions">
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="far fa-window-restore"></i>
<span>
Live Site
</span>
</span>
</button>
</a>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="fab fa-github-alt"></i>
<span>
Repo Link
</span>
</span>
</button>
</a>
</div>
</div>
<div class="project-card" id="card-4">
<div class="project-img">
<img src="./projects/project-4.png" alt="Calculator project">
</div>
<div class="header">
<h2>Calculator</h2>
<div class="title">Tech Used - Vanilla Javascript</div>
</div>
<div class="colorband"></div>
<div class="desc">Calculator made using Html, CSS and Javascript which can perform all the basic math
operations.</div>
<div class="actions">
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer">
<button>
<span>
<i class="far fa-window-restore"></i>
<span>
Live Site
</span>
</span>
</button>
</a>
<a href="https://www.incorebmedia.com" target="_blank"
rel="noopener noreferrer">
<button>
<span>
<i class="fab fa-github-alt"></i>
<span>
Repo Link
</span>
</span>
</button>
</a>
</div>
</div>
</div>
</section>
<!-- end of projects -->
<!-- skills -->
<section class="section skills" id="skills">
<!-- section title -->
<div class="section-title">
<h2>skills</h2>
<div class="underline"></div>
</div>
<!--end of section title -->
<div class="section-center skills-center">
<article>
<h3>Languages</h3>
<div class="skill-box-1">
<div>
<img class="skill-icn" src="./logos/python.svg" alt="python">
<p class="skill-name">Python</p>
</div>
<div>
<img class="skill-icn" src="./logos/javascript.svg" alt="javascript">
<p class="skill-name">Javascript</p>
</div>
</div>
</article>
<article>
<h3>Technologies</h3>
<div class="skill-box-2">
<div>
<img class="skill-icn" src="./logos/react.svg" alt="react">
<p class="skill-name">React</p>
</div>
<div>
<img class="skill-icn" src="./logos/django.svg" alt="django">
<p class="skill-name">Django</p>
</div>
<div>
<img class="skill-icn" src="./logos/node-js.svg" alt="nodejs">
<p class="skill-name">Node js</p>
</div>
</div>
</article>
<article>
<h3>Tools</h3>
<div class="skill-box-3">
<div>
<img class="skill-icn" src="./logos/vscode.svg" alt="vscode">
<p class="skill-name">Vs code</p>
</div>
<div>
<img class="skill-icn" src="./logos/git.svg" alt="git">
<p class="skill-name">Git</p>
</div>
<div>
<img class="skill-icn" src="./logos/figma.svg" alt="figma">
<p class="skill-name">Figma</p>
</div>
</div>
</article>
</div>
</section>
<!-- end of skills -->
<!-- timeline -->
<section class="section timeline">
<!-- section title -->
<div class="section-title">
<h2 class="section-primary">timeline</h2>
<div class="underline"></div>
</div>
<!--end of section title -->
<div class="section-center timeline-center">
<!-- single timeline item -->
<article class="timeline-item">
<h4>Sept - 2020</h4>
<p>
Currently working on a full stack MERN project.
</p>
<span class="number"> 1 </span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>Aug - 2020</h4>
<p>
Started writing blogs, sharing my knowledge, and giving back to the community. Got pretty active on twitter,
Connected with a lot of like-minded developers, and trying to be an active member of the community as much as
I can, also made my blog with the help of Django to share what I learned with the community.
</p>
<span class="number"> 2 </span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>April - 2020</h4>
<p>
Got hands onto react and nodejs, both are amazing technologies and slowly started getting my hands dirty with
MERN stack and learning how to make to full-fledged apps out of it.
</p>
<span class="number"> 3 </span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4> Jan - 2020</h4>
<p>
Started with javascript, its a complete language in itself and it took me a while to get on hold with it.
Played around with javascript, skimmed through its frameworks, and make some small projects out of it.
</p>
<span class="number"> 4 </span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2017</h4>
<p>
School over, came into college. Started learning web development. Cleared the basics like how the web works,
how files are transferred, and all. Then completed an HTML, CSS course and designed some basic websites with
it that lacked functionality, and as I knew python I played around with Django and learned a lot about how the
backend works
</p>
<span class="number"> 5 </span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2016</h4>
<p>
Started with learning python, my main goal with programming was to create things that could help the masses.
Python was a great language to jump on but it didn't teach the basics of how computer work so I learned java
and C with it.
</p>
<span class="number"> 6 </span>
</article>
<!-- end of single timeline item -->
</div>
</section>
<!--end of timeline -->
<!-- blog -->
<section class="section blog" id="blogs">
<!-- section title -->
<div class="section-title">
<h2>blog</h2>
<div class="underline"></div>
</div>
<!--end of section title -->
<div class="section-center blog-center">
<!-- single article -->
<div class="container">
<a href="https://www.incorebmedia.com/post/review-of-the-book-life-is-what-you-make-it" target="_blank"
rel="noopener noreferrer">
<div class="card">
<div class="card-header">
<img
src="http://3.bp.blogspot.com/-Efca8Kg6AuY/VF7_7HLG0II/AAAAAAAAAGc/bfVVxmCybX0/w1200-h630-p-k-nu/Life-is-what-you-make-it-11.jpg"
alt="Blog cover" />
</div>
<div class="card-body">
<span class="tag tag-teal">Technology</span>
<h4>Book review- " Life is what you make it"
Speed
</h4>
<p>
It's a story of love, hope, and how determination can overcome the destiny.
Set across two cities in India in the early eighties, "Life is What You Make it", is a gripping account of a few significant years of Ankita's life.
</p>
<div class="user">
<img src="./images/boy.jpg" alt="Prashant Sharma" />
<div class="user-info">
<h5>Prashant Sharma</h5>
<small>Sept 15</small>
</div>
</div>
</div>
</div>
</a>
<a href="https://dev.to/dailydotdev/semantic-html-and-why-does-it-matter-4kjh" target="_blank"
rel="noopener noreferrer">
<div class="card">
<div class="card-header">
<img
src="https://cdn-images-1.medium.com/max/1200/1*5-aoK8IBmXve5whBQM90GA.png"
alt="Blog cover" />
</div>
<div class="card-body">
<span class="tag tag-teal">Technology</span>
<h4>Getting started with Flutter </h4>
<p>
I am a Flutter Developer like you and I understand how much time consuming it is to set up a workspace with perfect tools and plugin to make your development fast.
So here is a list of tools and practices I use when I develop projects using Flutter
</p>
<div class="user">
<img src="./images/boy.jpg" alt="Prashant Sharma" />
<div class="user-info">
<h5>Prashant Sharma</h5>
<small>Sept 3</small>
</div>
</div>
</div>
</div>
</a>
<a href="https://www.incorebmedia.com/post/getting-started-with-git-and-github" target="_blank"
rel="noopener noreferrer">
<div class="card">
<div class="card-header">
<img
src="https://www.drupal.org/files/project-images/github_commits_logo_0.png"
alt="Blog cover" />
</div>
<div class="card-body">
<span class="tag tag-teal">Git-Github</span>
<h4>Should you use Git and Github?</h4>
<p>
Absolutely they can and they should use it. As this platform helps
them to upload their projects as a repositories which gives them the
opportunity to not only showcase their projects but also a chance
to contribute into open source software's .
</p>
<div class="user">
<img src="./images/boy.jpg" alt="Prashant Sharma" />
<div class="user-info">
<h5>Prashant Sharma</h5>
<small>Aug 18</small>
</div>
</div>
</div>
</div>
</a>
<a href="https://dev.to/dailydotdev/getting-started-with-responsive-web-design-1h39" target="_blank"
rel="noopener noreferrer">
<div class="card">
<div class="card-header">
<img
src="https://res.cloudinary.com/practicaldev/image/fetch/s--XWHlMH3_--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/i/6dknixp8786pkgeq7tyy.jpg"
alt="Blog cover" />
</div>
<div class="card-body">
<span class="tag tag-teal">Technology</span>
<h4>Getting Started With Responsive Web Design</h4>
<p>
Whenever you create any website, you often see the desktop version of it, but what if someone sees it on
a
smaller screen size like a mobile phone or a tablet, in that case, the design and look of your website
can
drastically change.
</p>
<div class="user">
<img src="./images/boy.jpg" alt="Prashant Sharma" />
<div class="user-info">
<h5>Prashant Sharma</h5>
<small>Aug 8</small>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!--end of blog -->
<!-- footer -->
<footer class="footer" id="contact">
<!-- social icons -->
<ul class="social-icons">
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer"
class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-github"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-dev"></i>
</a>
</li>
<li>
<a href="https://www.incorebmedia.com" target="_blank" rel="noopener noreferrer" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
<p>© <span id="date"></span> Prashant Sharma. All rights reserved <span class="india">🇮 🇳</span>
</p>
</footer>
<script async src="./js/app.js"></script>
</body>
</html>