-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
788 lines (712 loc) · 31.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
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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
<!DOCTYPE html>
<html lang="en">
<head>
<title>All About Pranesh</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Template css Files -->
<link rel="icon" href="./images/icon.svg" type="image/svg" sizes="16x16" style="text-rendering: optimizeLegibility;">
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/skins/pink.css" type="text/css" />
<!-- Live Style Switcher -->
<link rel="stylesheet" class="alternate-style" title="pink" href="css/skins/pink.css" type="text/css" />
<link rel="stylesheet" class="alternate-style" title="blue" href="css/skins/blue.css" type="text/css" disabled />
<link rel="stylesheet" class="alternate-style" title="orange" href="css/skins/orange.css" type="text/css" disabled />
<link rel="stylesheet" class="alternate-style" title="yellow" href="css/skins/yellow.css" type="text/css" disabled />
<link rel="stylesheet" class="alternate-style" title="green" href="css/skins/green.css" type="text/css" disabled/>
<link rel="stylesheet" href="css/styleSwitcher.css" type="text/css"/>
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="loader"></div>
</div>
<!-- Preloader ends here -->
<!-- Main Container -->
<div class="main-container">
<!-- Aside -->
<div class="aside">
<!-- Logo -->
<div class="logo">
<a href="#">PPranesh</a>
</div>
<!-- Navigation Toggle Button -->
<div class="nav-toggler">
<span></span>
</div>
<!-- Navigation -->
<ul class="nav">
<li>
<a href="#home" class="active"><i class="fa fa-home"></i> Home</a>
</li>
<li>
<a href="#about"><i class="fa fa-user"></i> About</a>
</li>
<li>
<a href="#services"><i class="fa fa-list"></i> Stacks</a>
</li>
<li>
<a href="#portfolio"><i class="fa fa-briefcase"></i> Portfolio</a>
</li>
<li>
<a href="#blog"><i class="fa fa-envelope"></i> Story</a>
</li>
<!-- <li>
<a href="#"><i class="fa fa-heart"></i> Passion</a>
</li> -->
<li>
<a href="#contact"><i class="fa fa-comments"></i> Contact</a>
</li>
</ul>
<!-- Copyright -->
<div class="copyright-text">
© 2020 Made in ❤ by PPranesh
</div>
</div>
<!-- Aside ends here -->
<!-- Main content -->
<div class="main-content">
<!-- Home Section -->
<section class="home section active" id="home">
<div class="container">
<div class="intro">
<img src="images/my_image.jpg" alt="profile" class="shadow-dark" />
<h1>Pranesh Palanisamy</h1>
<p>I'm a Software Developer</p>
<div class="social-link">
<a href="https://twitter.com/pranesh07269610" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/PPranesh" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.instagram.com/its__me__pranesh/" target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/pranesh-palanisamy/" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</section>
<!-- Home Section ends here -->
<!-- About Section -->
<section class="about section" id="about">
<div class="container">
<div class="row">
<div class="section-title left-space">
<h2>About Me</h2>
</div>
</div>
<!-- Bio-Data and Skills -->
<div class="row">
<div class="about-content left-space">
<div class="row">
<div class="about-text left-space">
<h3>Hi! I'm Pranesh Palanisamy, <span>Software Developer.</span></h3>
<p>Myself, A passionate and pragmatic software Developer. And a person with deep focus towards "Lifelong Learning". I am actively looking for a workspace where talent is respected and the drive for Iterative Learning is kindled.</p>
</div>
</div>
<div class="row">
<!-- Bio-Data -->
<div class="personal-info left-space">
<div class="row">
<div class="info-item left-space">
<p>Birthday : <span>28 August 1998</span></p>
</div>
<div class="info-item left-space">
<p>Age : <span>22</span></p>
</div>
<div class="info-item left-space">
<p>Website : <span><a href="#">My Webpage</a><i class="live"> [Live]</i></a> </span></p>
</div>
<div class="info-item left-space">
<p>Email : <span>ppranesh5@gmail.com</span></p>
</div>
<div class="info-item left-space">
<p>Degree : <span>B.E. CSE</span></p>
</div>
<div class="info-item left-space">
<p>Phone : <span>+91 989 469 7120</span></p>
</div>
<div class="info-item left-space">
<p>City : <span>Coimbatore</span></p>
</div>
<div class="info-item left-space">
<p>Freelance : <span>Not Available</span></p>
</div>
</div>
<div class="row">
<div class="buttons left-space">
<a href="/download/pranesh_resume.pdf" class="btn" id="button_color" download="Pranesh_Resume">Download Resume</a>
<a href="#contact" data-section-index="1" class="btn hire-me" id="button_color">Hire Me</a>
</div>
</div>
</div>
<!-- Bio-Data ends here -->
<!-- Skills -->
<div class="skills left-space">
<div class="row">
<div class="skill-item left-space">
<h5>Java</h5>
<div class="progress">
<div class="progress-in" style="width: 60%"></div>
<div class="skill-percent">60%</div>
</div>
</div>
<div class="skill-item left-space">
<h5>React Native</h5>
<div class="progress">
<div class="progress-in" style="width: 80%"></div>
<div class="skill-percent">80%</div>
</div>
</div>
<div class="skill-item left-space">
<h5>JavaScript, jQuery</h5>
<div class="progress">
<div class="progress-in" style="width: 85%"></div>
<div class="skill-percent">85%</div>
</div>
</div>
<div class="skill-item left-space">
<h5>NodeJs</h5>
<div class="progress">
<div class="progress-in" style="width: 65%"></div>
<div class="skill-percent">65%</div>
</div>
</div>
</div>
</div>
</div>
<!-- Skills ends here -->
<!-- My Education and Experience -->
<div class="row">
<!-- Education -->
<div class="education left-space">
<h3 class="title">Education</h3>
<div class="row">
<div class="timeline-box left-space">
<div class="timeline shadow-dark">
<!-- Timeline Items -->
<div class="timeline-item">
<div class="timeline-point"></div>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2013 - 2014
</h6>
<h4 class="timeline-title">Completed my SSLC - 90.60%</h4>
<p class="timeline-text">
It was a great time to Learn, Play, Explore that made me in getting a good score, Achieved Centem Scorer Award in Maths(SSLC).
</p>
</div>
<!-- Timeline Items ends here -->
<!-- Timeline Items -->
<div class="timeline-item">
<div class="timeline-point"></div>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2014 - 2016
</h6>
<h4 class="timeline-title">Completed my HSC - 86.08%</h4>
<p class="timeline-text space-between">
<strong>~</strong> Learning things practically gives a better understanding and creativity helps to make yourself Unique in all time.
</p>
<p class="timeline-text space-between">
<strong>~</strong> Those efforts made me to get a better College for my UG-Degree.
</p>
</div>
<!-- Timeline Items ends here -->
<!-- Timeline Items -->
<div class="timeline-item">
<div class="timeline-point"></div>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> 2016 - 2020
</h6>
<h4 class="timeline-title">Completed my Bachelor's Degree - 7.72* CGPA</h4>
<p class="timeline-text space-between">
<strong>~</strong> New Friends, More fun, Mass Bunks, Making Memories, Good Environment and Great Exposure.
</p>
<p class="timeline-text space-between">
<strong>~</strong> Stepping on to the programming, getting inspired by the world-developers, building the creativity through carving the ideas that brings me here!!
</p>
</div>
<!-- Timeline Items ends here -->
</div>
</div>
</div>
</div>
<!-- Education ends here -->
<!-- Experience -->
<div class="experience left-space">
<h3 class="title">Experience</h3><div class="row">
<div class="timeline-box left-space">
<div class="timeline shadow-dark">
<!-- Timeline Items -->
<div class="timeline-item">
<div class="timeline-point"></div>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> Sept 2019 - June 2020 [ 10 Months ]
</h6>
<h4 class="timeline-title">Intern at Altran Technologies</h4>
<p class="timeline-text space-between">
<strong>~</strong> Learned new things on Networking Technologies and Protocols like SMTP, TCP, UDP.
</p>
<p class="timeline-text space-between">
<strong>~</strong> Worked on project of Lab Inventory tool, where open source software is used to make things easier to get via Requesting process.
</p>
<p class="timeline-text space-between">
<strong>~</strong> Worked on project of Automation Dashboard, for displaying various results of the test cases using amChartJs Representation and data-visualizing.
</p>
</div>
<!-- Timeline Items ends here -->
<!-- Timeline Items -->
<div class="timeline-item">
<div class="timeline-point"></div>
<h6 class="timeline-date">
<i class="fa fa-calendar"></i> July 2020 - Present
</h6>
<h4 class="timeline-title">Sofware Developer at toCode Technologies</h4>
<p class="timeline-text">
<strong>~</strong> A Good Experience in React Native within a short span of time.. Worked on Projects like Aiwise..
</p>
<p class="timeline-text">
<strong>~</strong> A Good Experience in React Native within a short span of time.. Worked on Projects like Aiwise..
</p>
</div>
<!-- Timeline Items ends here -->
</div>
</div>
</div>
</div>
<!-- Experience ends here -->
</div>
<!-- My Education and Experience ends here -->
</div>
</div>
<!-- Bio-Data and Skills ends here -->
</div>
</section>
<!-- About Section ends here -->
<!-- Service section -->
<section class="service section" id="services">
<div class="container">
<div class="row">
<div class="section-title left-space">
<h2>Tech Stacks</h2>
</div>
</div>
<div class="row">
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-laptop"></i></div>
<h4>Web Design</h4>
<p>Designing simple visuals and protyping that makes the product to better before building it.</p>
</div>
</div>
<!-- Service Item ends here -->
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-code"></i></div>
<h4>Front End</h4>
<p>Learning the concept of building the web application using HTML, CSS, JS, React Native & etc.</p>
</div>
</div>
<!-- Service Item ends here -->
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-terminal"></i></div>
<h4>Back End</h4>
<p>Having a basic Experience on NodeJs, MongoDB, Python & etc.</p>
</div>
</div>
<!-- Service Item ends here -->
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-photo"></i></div>
<h4>Photography</h4>
<p>The best thing about a picture is that it never changes, even when the people in it do.</p>
</div>
</div>
<!-- Service Item ends here -->
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-code-fork"></i></div>
<h4>Searching</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum.</p>
</div>
</div>
<!-- Service Item ends here -->
<!-- Service Item -->
<div class="service-item left-space">
<div class="service-inner-item">
<div class="icon"><i class="fa fa-linux"></i></div>
<h4>Searching</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum.</p>
</div>
</div>
<!-- Service Item ends here -->
</div>
</div>
</section>
<!-- Service section ends here -->
<!-- Portfolio Section -->
<section class="portfolio section" id="portfolio">
<div class="container">
<div class="row">
<div class="section-title left-space">
<h2>Portfolio</h2>
</div>
</div>
<div class="row">
<div class="portfolio-filter left-space">
<button type="button" class="active" data-filter="all">All</button>
<button type="button" data-filter="web-apps">Web Apps</button>
<button type="button" data-filter="mobile-apps">Mobile Apps</button>
<button type="button" data-filter="web-design">Web Design</button>
</div>
</div>
<div class="row">
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_1.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>TODO List App</h4>
<div class="icon">
<a href="https://ppranesh-todolists.herokuapp.com/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_2.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Simon Game</h4>
<div class="icon">
<a href="https://ppranesh.github.io/Simon-Game-Challenge/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_3.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Two Dice Game</h4>
<div class="icon">
<a href="https://ppranesh.github.io/Dicee/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_4.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Drums Play</h4>
<div class="icon">
<a href="https://ppranesh.github.io/drums_band_with_js/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_5.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Portfolio-v1</h4>
<div class="icon">
<a href="https://ppranesh.github.io/AllAboutPranesh/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wa_6.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Lockdown Days</h4>
<div class="icon">
<a href="https://lockdowncounts.netlify.app/" target="_blank"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="mobile-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/ma_1.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>About UI</h4>
<div class="icon">
<i class="fa fa-search"></i>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="mobile-apps">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/ma_3.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Portfolio Profile</h4>
<div class="icon">
<i class="fa fa-search"></i>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-design">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wd_1.jpg" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Landing Page</h4>
<div class="icon">
<i class="fa fa-search"></i>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
<!-- Portfolio Item -->
<div class="portfolio-item left-space" data-category="web-design">
<div class="portfolio-item-inner shadow-dark">
<div class="portfolio-img">
<img src="images/portfolio/wd_2.png" alt="portfolio" />
</div>
<div class="portfolio-info">
<h4>Latest Resume</h4>
<div class="icon">
<a id="resume" href="images/my_resume.svg" target="_blank" width="100%" height="100%"><i class="fa fa-search"></i></a>
</div>
</div>
</div>
</div>
<!-- Portfolio Item ends here -->
</div>
</div>
</section>
<!-- Portfolio Section ends here -->
<!-- Blog Section -->
<section class="blog section" id="blog">
<div class="container">
<div class="row">
<div class="section-title left-space">
<h2>Two Lines Story</h2>
</div>
</div>
<div class="row">
<!-- Blog Item -->
<div class="blog-item left-space">
<div class="blog-item-inner shadow-dark">
<div class="blog-img">
<img src="images/blog/1.png" alt="blog">
<div class="blog-date">
13 Jul 2020
</div>
</div>
<div class="blog-info">
<h4 class="blog-title">Getting a MacBook</h4>
<p class="blog-description">It was a big Dream to use a MacBook as my personal computer, for both home and at work since my College Days and still in progression.</p>
<p class="blog-tags">Tags : <a href="https://www.apple.com/in/macbook-pro/">MacBook</a></p>
</div>
</div>
</div>
<!-- Blog Item ends here -->
<!-- Blog Item -->
<div class="blog-item left-space">
<div class="blog-item-inner shadow-dark">
<div class="blog-img">
<img src="images/blog/2.png" alt="blog">
<div class="blog-date">
20 May 2020
</div>
</div>
<div class="blog-info">
<h4 class="blog-title">Understanding Yourself</h4>
<p class="blog-description">Pandamic time made me to get a clear idea of what I'm doing. That helped me in exprementing things that that I am passionate about.</p>
<p class="blog-tags">Tags : <a href="#">Passionate</a></p>
</div>
</div>
</div>
<!-- Blog Item ends here -->
<!-- Blog Item -->
<div class="blog-item left-space">
<div class="blog-item-inner shadow-dark">
<div class="blog-img">
<img src="images/blog/3.png" alt="blog">
<div class="blog-date">
05 Dec 2019
</div>
</div>
<div class="blog-info">
<h4 class="blog-title">Happy Cycling Days</h4>
<p class="blog-description">Cycling was one of the most important habit, that made me to get connected with nature, people, peace of mind and motivation.</p>
<p class="blog-tags">Tags : <a href="https://chennaicyclists.com/">WCCG</a>, <a href="#">Cycling</a></p>
</div>
</div>
</div>
<!-- Blog Item ends here -->
</div>
</div>
</section>
<!-- Blog Section ends here -->
<!-- Contact Section -->
<section class="contact section" id="contact">
<div class="container">
<div class="row">
<div class="section-title left-space">
<h2>Contact Me</h2>
</div>
</div>
<div class="row">
<!-- Contact Info Item -->
<div class="contact-info-item left-space">
<div class="icon"><i class="fa fa-phone"></i></div>
<h4>Call Me On</h4>
<p>+91 989 469 7120</p>
</div>
<!-- Contact Info Item -->
<!-- Contact Info Item -->
<div class="contact-info-item left-space">
<div class="icon"><i class="fa fa-map-marker"></i></div>
<h4>Home Town</h4>
<p>Coimbatore, Tamil Nadu</p>
</div>
<!-- Contact Info Item -->
<!-- Contact Info Item -->
<div class="contact-info-item left-space">
<div class="icon"><i class="fa fa-envelope"></i></div>
<h4>Email</h4>
<p>ppranesh5@gmail.com</p>
</div>
<!-- Contact Info Item -->
</div>
<!-- Contact form -->
<div class="row">
<form class="contact-form left-space" action="mailto:ppranesh5@gmail.com" method="POST" enctype="text/plain" >
<div class="row">
<div class="form-item half-side left-space">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" name="name" id="name"/>
</div>
</div>
<div class="form-item half-side left-space">
<div class="form-group">
<input type="text" class="form-control" placeholder="Email" name="mail" id="mail" onblur="validateEmail(this);"/>
</div>
</div>
</div>
<div class="row">
<div class="form-item full-side left-space">
<div class="form-group">
<input type="text" class="form-control" placeholder="Subject" name="subject" id="subject"/>
</div>
</div>
</div>
<div class="row">
<div class="form-item full-side left-space">
<div class="form-group">
<textarea class="form-control" placeholder="Your Messege..." name="content" id="content" ></textarea>
</div>
</div>
</div>
<div class="row">
<div class="full-side left-space">
<button type="submit" id="button_color" class="btn" onclick="moveUp()">Send Message</button>
</div>
<div class="full-side left-space">
<h4 class="confirm_msg"></h4>
</div>
</div>
</form>
</div>
<!-- Contact form ends here -->
</div>
</section>
<!-- Contact Section ends here -->
</div>
<!-- Main content ends here -->
</div>
<!-- Main Container ends here -->
<!-- Lightbox -->
<div class="lightbox">
<div class="lightbox-content">
<div class="lightbox-close">×</div>
<img src="images/portfolio/ma_1.png" class="lightbox-img" onclick="nextItem()">
<div class="lightbox-caption">
<div class="caption-text"></div>
<div class="caption-counter"></div>
</div>
</div>
<div class="lightbox-controls">
<div class="prev-item" onclick="prevItem()"><i class="fa fa-angle-left"></i></div>
<div class="next-item" onclick="nextItem()"><i class="fa fa-angle-right"></i></div>
</div>
</div>
<!-- Lightbox ends here -->
<!-- Live Style Changer -->
<div class="style-switcher">
<div class="toggle-style-switcher">
<i class="fa fa-cog"></i>
</div>
<h5>Style Switcher</h5>
<ul>
<li>
<a href="javascript:void(0);" title="pink" style="background-color: #ec1839;" onclick="setActiveStyle('pink')"></a>
</li>
<li>
<a href="javascript:void(0);" title="blue" style="background-color: #2196f3;" onclick="setActiveStyle('blue')"></a>
</li>
<li>
<a href="javascript:void(0);" title="orange" style="background-color: #fa5b0f;" onclick="setActiveStyle('orange')"></a>
</li>
<li>
<a href="javascript:void(0);" title="yellow" style="background-color: #ffb400;" onclick="setActiveStyle('yellow')"></a>
</li>
<li>
<a href="javascript:void(0);" title="green" style="background-color: #72b626;" onclick="setActiveStyle('green')"></a>
</li>
</ul>
<h5>Themes</h5>
<label>
<input type="radio" class="body-skin" name="body-style" value="light" checked="true" /> Light
</label>
<label>
<input type="radio" class="body-skin" name="body-style" value="dark" /> Dark
</label>
</div>
<!-- Live Style Changer ends here -->
<script src="js/script.js"></script>
<script src="js/styleSwitcher.js"></script>
</body>
</html>