-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
676 lines (674 loc) · 22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ajay Pathak || Home</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.ico" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="./fontawesome-free-5.12.1-web/css/all.min.css"
/>
<!-- css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- navbar -->
<nav class="nav" id="nav">
<div class="nav-center">
<!-- nav-header -->
<div class="nav-header">
<img src="./images/real (1).svg" class="nav-logo" alt="nav-logo" />
<button class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- nav links -->
<ul class="nav-links">
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about</a>
</li>
<li>
<a href="projects.html">projects</a>
</li>
<li>
<a href="contact.html">contact</a>
</li>
</ul>
</div>
</nav>
<!-- end of navbar -->
<!-- sidebar -->
<aside class="sidebar" id="sidebar">
<div>
<button class="close-btn" id="close-btn">
<i class="fas fa-times"></i>
</button>
<!-- sidebar links -->
<ul class="sidebar-links">
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about</a>
</li>
<li>
<a href="projects.html">projects</a>
</li>
<li>
<a href="contact.html">contact</a>
</li>
</ul>
<!-- social icons -->
<ul class="social-icons">
<li>
<a
target="_blank"
href="https://www.twitter.com/Pathkbndhu_navo?t=Q3DMPaz8xjs2G7HxvL3paA&s=09"
class="social-icon"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/ajay-pathak-966512145/"
class="social-icon"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://github.com/ap221882/"
class="social-icon"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.facebook.com/ajay.pathak.75839923/"
class="social-icon"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.instagram.com/pathakbandhu_navo"
class="social-icon"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</div>
</aside>
<!-- end of sidebar -->
<!-- header -->
<header class="hero">
<div class="section-center hero-center">
<article class="hero-info">
<div class="hero-info-bg"></div>
<div class="hero-info-content">
<h1>I'm Ajay</h1>
<h4>freelance web UI/UX Developer</h4>
<a
href="./assets/Ajays_Resume.pdf"
class="btn hero-btn"
download="Ajays_Resume"
>download resume</a
>
<!-- social icons -->
<ul class="social-icons hero-icons">
<li>
<a
target="_blank"
href="https://www.twitter.com/Pathkbndhu_navo?t=Q3DMPaz8xjs2G7HxvL3paA&s=09"
class="social-icon"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/ajay-pathak-966512145/"
class="social-icon"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://github.com/ap221882/"
class="social-icon"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.facebook.com/ajay.pathak.75839923/"
class="social-icon"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.instagram.com/pathakbandhu_navo"
class="social-icon"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</div>
</article>
<article class="hero-img">
<img
src="https://avatars.githubusercontent.com/u/60094012?s=400&u=7deed41f51de7e55b258424d311aa5119d38b21b&v=4"
class="hero-photo"
alt="ajay pathak"
/>
</article>
</div>
</header>
<!-- end of header -->
<!-- about -->
<section class="section about">
<div class="section-center about-center">
<!-- about img -->
<article class="about-img">
<img
src="./images/Ajay-about-img.jpg"
class="hero-photo"
alt="about-img"
/>
</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>
I am Ajay Pathak, an aspiring full stack web developer with
knowledge of latest web technologies. I am proficient in making full
blown web applications and especially frontend part of it. I have
made static as well as dynamic web pages using HTML, CSS,
Javascript. I am proficient in Python and know core Java and C++.
Though, I am learning to deal with complex algorithms till now. I am
ready to collaborate on projects so I will be ready to contact you.
</p>
<p>
Besides all this, I am keenly interested in Human Sciences and
especially History and Economics. I am a Hindi Poet, a Script Writer
as well as a Actor too. I like chilling out on weekends and like to
make new and interesting friends.
</p>
<a href="about.html" class="btn">about me</a>
</article>
</div>
</section>
<!-- end of about -->
<!-- services -->
<section class="section bg-grey">
<!-- section title -->
<div class="section-title">
<h2>services</h2>
<div class="underline"></div>
</div>
<!-- end of section title -->
<div class="section-center services-center">
<!-- single service -->
<article class="service">
<i class="fas fa-laptop-code service-icon"></i>
<h4>web development</h4>
<div class="underline"></div>
<p>
I am proficient in HTML, CSS and Javascript. I know to make modern
responsive designs and create animations, layouts etc. with CSS. I
can make dynamic frontend of websites.
</p>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service">
<i class="fas fa-project-diagram service-icon"></i>
<h4>data structures & algorithms</h4>
<div class="underline"></div>
<p>
I am proficient in writing Python codes and can code in basic C++
and Java.
</p>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service">
<i class="fas fa-window-maximize service-icon"></i>
<!-- <i class="fab fa-android service-icon"></i> -->
<h4>frontend UI technologies</h4>
<div class="underline"></div>
<p>
I am currently working on React and have made numerous single page
web applications. I am preparing to use Next.js in my projects.
</p>
</article>
<!-- end of single service -->
</div>
</section>
<!-- end of services -->
<!-- projects -->
<section class="section projects">
<!-- section title -->
<div class="section-title">
<h2>latest works</h2>
<div class="underline"></div>
<p class="projects-text">
In this section, you may find my latest works which I have done in my
personal or professional career. Hope you all will like it and suggest
me with better ideas to code or collaborate.
</p>
</div>
<!-- end of section title -->
<div class="section-center projects-center">
<!-- single project -->
<a href="projects.html" class="project-1">
<article class="project">
<img
src="./images/chai-main-bcg.jpeg"
alt="single-project"
class="project-img"
/>
<div class="project-info">
<h4>Chai Wallah Project</h4>
<p>Personal Project</p>
</div>
</article>
</a>
<!-- end of single project -->
<!-- single project -->
<a href="projects.html" class="project-2">
<article class="project">
<img
src="./images/safarnama-img.jpeg"
alt="safarnama-project"
class="project-img"
/>
<div class="project-info">
<h4>Safarnama</h4>
<p>Personal Project</p>
</div>
</article>
</a>
<!-- end of single project -->
<!-- single project -->
<a href="projects.html" class="project-3">
<article class="project">
<img
src="./images/project-3.jpeg"
alt="single-project"
class="project-img"
/>
<div class="project-info">
<h4>Nordic Rose Project</h4>
<p>Personal Project</p>
</div>
</article>
</a>
<!-- end of single project -->
<!-- single project -->
<a href="projects.html" class="project-4">
<article class="project">
<img
src="./images/project-4.jpeg"
alt="single-project"
class="project-img"
/>
<div class="project-info">
<h4>Modal Window Project</h4>
<p>Personal Project</p>
</div>
</article>
</a>
<!-- end of single project -->
</div>
</section>
<!-- end of projects -->
<!-- connect -->
<section class="connect">
<!-- controls removed -->
<video
autoplay
muted
loop
class="video-container"
poster="./images/project-1.jpeg"
>
<source src="./videos/connect.mp4" type="video/mp4" />
Sorry, your browser does not support embedded videos.
</video>
<div class="video-banner">
<!-- section title -->
<div class="section-title">
<h2>let's get in touch</h2>
<div class="underline"></div>
</div>
<!-- end of section title -->
<p class="video-text">
I will be happy to connect with you anytime. As I am a social media
geek, you can find me at most of the social media platforms. Click
below and let's get in touch.
</p>
<a href="contact.html" class="btn">contact me</a>
</div>
</section>
<!-- end of connect -->
<!-- skills -->
<section class="section 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>front end</h3>
<!-- single skill -->
<div class="skill">
<p>HTML/CSS</p>
<div class="skill-container">
<div class="skill-value"></div>
<p class="skill-text">80%</p>
</div>
</div>
<!-- single skill -->
<div class="skill">
<p>Javascript</p>
<div class="skill-container">
<div class="skill-value value-70"></div>
<p class="skill-text skill-text-70">70%</p>
</div>
</div>
<!-- single skill -->
<div class="skill">
<p>react</p>
<div class="skill-container">
<div class="skill-value value-70"></div>
<p class="skill-text skill-text-70">70%</p>
</div>
</div>
</article>
<article>
<h3>back end</h3>
<!-- single skill -->
<div class="skill">
<p>Node</p>
<div class="skill-container">
<div class="skill-value node-value-50"></div>
<p class="skill-text node-text-50">50%</p>
</div>
</div>
<!-- single skill -->
<div class="skill">
<p>Django</p>
<div class="skill-container">
<div class="skill-value value-70"></div>
<p class="skill-text skill-text-70">70%</p>
</div>
</div>
<!-- single skill -->
<div class="skill">
<p>java spring</p>
<div class="skill-container">
<div class="skill-value value-0"></div>
<p class="skill-text skill-text-0">0%</p>
</div>
</div>
</article>
</div>
</section>
<!-- end of skills -->
<!-- timeline -->
<section class="section timeline">
<!-- section title -->
<div class="section-title">
<h2>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>Feb 2023</h4>
<p>I got promoted to Software Engineer-I in Naehas Inc.</p>
<span class="number">1</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>Jan 2022</h4>
<p>
I got my professional role as Associate Software Engineer in Naehas
Inc. located in Gurugram, Haryana.
</p>
<span class="number">2</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2018</h4>
<p>
Took admission in Samrat Ashok Technological Institute, Vidisha in
the stream of Computer Science and Engineering.
</p>
<span class="number">2</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2017</h4>
<p>
Passed 12th in PCM stream from Jawahar Navodaya Vidyalaya,
Chhatarpur, M.P. with 86.8% marks.
</p>
<span class="number">3</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2015</h4>
<p>
Passed 10th from Jawahar Navodaya Vidyalaya, Chhatarpur, M.P. with
9.2 CGPA.
</p>
<span class="number">4</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>2010</h4>
<p>
Took admission in Jawahar Navodaya Vidyalaya, Chhatarpur by
qualifying District level entrance exam for the same.
</p>
<span class="number">5</span>
</article>
<!-- end of single timeline item -->
<!-- single timeline item -->
<article class="timeline-item">
<h4>1999</h4>
<p>
Started to visit my mother Earth after long cycles of
reincarnations.
</p>
<span class="number">6</span>
</article>
<!-- end of single timeline item -->
</div>
</section>
<!--end of timeline -->
<!-- blog -->
<section class="section blog">
<!-- 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="card">
<!-- front of the card -->
<div class="card-side card-front">
<img src="./images/project-1.jpeg" alt="" />
<div class="card-info">
<h4>Note</h4>
<p>
I will start to add my blogs which are scattered here and there
on web. Till then, let's move to other section of the site.
</p>
<div class="card-footer">
<img src="./images/Ajay-about-img.jpg" alt="author image" />
<p>7 min read</p>
</div>
</div>
</div>
<!-- back of the card -->
<div class="card-side card-back">
<button class="btn">read more</button>
</div>
</div>
<!-- end of single article -->
<!-- single article -->
<div class="card">
<!-- front of the card -->
<div class="card-side card-front">
<img src="./images/project-2.jpeg" alt="" />
<div class="card-info">
<h4>article title</h4>
<p>
I love cheese, especially camembert de normandie mascarpone.
Emmental the big cheese st. agur blue cheese hard cheese who
moved my cheese monterey jack roquefort jarlsberg.
</p>
<div class="card-footer">
<img src="./images/Ajay-about-img.jpg" alt="author image" />
<p>7 min read</p>
</div>
</div>
</div>
<!-- back of the card -->
<div class="card-side card-back">
<button class="btn">read more</button>
</div>
</div>
<!-- end of single article -->
<!-- single article -->
<div class="card">
<!-- front of the card -->
<div class="card-side card-front">
<img src="./images/project-3.jpeg" alt="" />
<div class="card-info">
<h4>article title</h4>
<p>
Williamsburg literally cardigan neutra, austin fanny pack beard
tumeric. Pug flexitarian palo santo freegan. Hella scenester.
</p>
<div class="card-footer">
<img src="./images/Ajay-about-img.jpg" alt="author image" />
<p>7 min read</p>
</div>
</div>
</div>
<!-- back of the card -->
<div class="card-side card-back">
<button class="btn">read more</button>
</div>
</div>
<!-- end of single article -->
<!-- single article -->
<div class="card">
<!-- front of the card -->
<div class="card-side card-front">
<img src="./images/project-4.jpeg" alt="" />
<div class="card-info">
<h4>article title</h4>
<p>
Game plan circle back around so critical mass golden goose.
Pro-sumer software net net, can we take this offline. Obviously
shoot me an email.
</p>
<div class="card-footer">
<img src="./images/Ajay-about-img.jpg" alt="author image" />
<p>7 min read</p>
</div>
</div>
</div>
<!-- back of the card -->
<div class="card-side card-back">
<button class="btn">read more</button>
</div>
</div>
<!-- end of single article -->
</div>
</section>
<!--end of blog -->
<!-- footer -->
<footer class="footer">
<!-- social icons -->
<ul class="social-icons">
<li>
<a
target="_blank"
href="https://www.twitter.com/Pathkbndhu_navo?t=Q3DMPaz8xjs2G7HxvL3paA&s=09"
class="social-icon"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.linkedin.com/in/ajay-pathak-966512145/"
class="social-icon"
><i class="fab fa-linkedin"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://github.com/ap221882/"
class="social-icon"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.facebook.com/ajay.pathak.75839923/"
class="social-icon"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a
target="_blank"
href="https://www.instagram.com/pathakbandhu_navo"
class="social-icon"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
<p>© <span id="date"></span> ajay pathak. all rights reserved.</p>
</footer>
<script src="./js/app.js"></script>
</body>
</html>