-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
297 lines (279 loc) · 9.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ajay Patil | Personal Portfolio</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="./assets/name-logo-favicon.svg" type="image/x-icon">
</head>
<body>
<header>
<img class="logo" src="./assets/name-logo.svg" alt="logo">
<nav class="navigation">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#technology">Technology</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
<a href="https://github.com/ajaypatil1993" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</nav>
<a href="./assets/Ajay_patil_resume.pdf" class="btn-talk">Download Resume</a>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</header>
<!-- Home -->
<section id="home" class="home">
<div class="content">
<h2>Hello, I'm <span>Ajay Patil</span></h2>
<h4>Your <span class="dynamic-text">Creative Frontend Architect</span></h4>
<p>
Passionate about crafting visually stunning and highly functional web experiences. I bring ideas to life with clean code, modern design, and a relentless attention to detail.
</p>
<div class="btn-group">
<a href="./hire-me.html">Hire Me</a>
<a href="#portfolio">See Projects</a>
</div>
<div class="social-icons">
<a
href="https://www.linkedin.com/in/ajaypatil1993/"
target="_blank"
>
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a
href="https://www.facebook.com/Ajaypatil1993"
target="_blank"
>
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="https://x.com/ajay_patil1993" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="https://github.com/ajaypatil1993" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a href="mailto:aj41093"gmail.com" target="_blank">
<i class="fa-solid fa-envelope"></i>
</a>
</div>
</div>
<div class="home-image">
<img src="./assets/Profile_Pic.jpg" alt="Profile Image" />
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="about-container">
<div class="about-image">
<img src="./assets/WhatsApp Image 2024-08-21 at 11.56.59_891647e8.jpg" alt="Profile Image">
</div>
<div class="about-text">
<h2>About Me</h2>
<p>
Hello! I'm Ajay Patil, a passionate Frontend Developer with a love for creating interactive and visually appealing web applications.
</p>
<p>
My journey began with a fascination for technology and design. Over the years, I have honed my skills in HTML, CSS, JavaScript, and various frontend frameworks like React.js.
</p>
<p>
When I'm not coding, you'll find me exploring new design trends, experimenting with UI/UX concepts, or enjoying some downtime with a good book or game.
</p>
</div>
</div>
<!-- Additional Information Section -->
<div class="additional-info">
<h3>Fun Fact</h3>
<p>"My coding sessions are so intense that my mom often tries to shut my laptop to get me to take a break!"</p>
</div>
</section>
<!-- Technology Section -->
<section id="technology" class="technology">
<div class="tech-stack">
<h2>Technology</h2>
<div class="tech-stack-container">
<div class="tech-item">
<i class="fa-brands fa-html5"></i>
<p>HTML5</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-css3-alt"></i>
<p>CSS3</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-js"></i>
<p>JavaScript</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-js"></i>
<p>TypeScript</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-bootstrap"></i>
<p>Bootstrap</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-css3-alt"></i>
<p>Tailwind CSS</p>
</div>
<div class="tech-item">
<i class="fa-regular fa-file-lines"></i>
<p>Material UI</p>
</div>
<div class="tech-item">
<i class="fa-solid fa-circle-nodes"></i>
<p>Chakra UI</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-react"></i>
<p>React.js</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-react"></i>
<p>Redux</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-vuejs"></i>
<p>Vue.js</p>
</div>
<div class="tech-item">
<i class="fa-solid fa-laptop-code"></i>
<p>VS Code</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-git"></i>
<p>Git</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-gitlab"></i>
<p>GitLab</p>
</div>
<div class="tech-item">
<i class="fa-brands fa-figma"></i>
<p>Figma</p>
</div>
<div class="tech-item">
<i class="fa-solid fa-file-code"></i>
<p>Webpack</p>
</div>
<div class="tech-item">
<i class="fa-solid fa-share-nodes"></i>
<p>Vite</p>
</div>
<div class="tech-item">
<i class="fa-solid fa-database"></i>
<p>Firebase</p>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio">
<div class="portfolio-content">
<h2>My Portfolio</h2>
<div class="portfolio-items">
<div class="portfolio-item">
<img src="./assets/project_1.jpg" alt="Project 1" />
<div class="portfolio-info">
<h3>01. Netflix Clone</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/Netflix_Clone" class="btn" target="_blank">GitHub Repo</a>
<a href="https://net-flix-clone-from-react-firebase.netlify.app/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="portfolio-item">
<img src="./assets/project_2.jpg" alt="Project 2" />
<div class="portfolio-info">
<h3>02. Ecommerce</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/Ecommerce_Website" class="btn" target="_blank">GitHub Repo</a>
<a href="https://reactjs-tailwindcss-ecommerce-website.netlify.app/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="portfolio-item">
<img src="./assets/project_3.jpg" alt="Project 3" />
<div class="portfolio-info">
<h3>03. Cake Magic</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/Cake_shop_website" class="btn" target="_blank">GitHub Repo</a>
<a href="https://cake-magic-shop.netlify.app/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="portfolio-item">
<img src="./assets/project_4.jpg" alt="Project 4" />
<div class="portfolio-info">
<h3>04. Motion Pods</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/MotionPods" class="btn" target="_blank">GitHub Repo</a>
<a href="https://motionpods.netlify.app/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="portfolio-item">
<img src="./assets/project_5.jpg" alt="Project 5" />
<div class="portfolio-info">
<h3>05. Amazon Clone</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/Amazon_clone" class="btn" target="_blank">GitHub Repo</a>
<a href="https://ajaypatil1993.github.io/Amazon_clone/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
<div class="portfolio-item">
<img src="./assets/project_6.jpg" alt="Project 6" />
<div class="portfolio-info">
<h3>06. Crypto Tracker</h3>
<div class="portfolio-buttons">
<a href="https://github.com/ajaypatil1993/Crypto_Dashboard" class="btn" target="_blank">GitHub Repo</a>
<a href="https://crypto-dashboard-react-chakraui.netlify.app/" class="btn" target="_blank">Live Demo</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="contact-content">
<h2>Contact Me</h2>
<form
action="mailto:your-email@example.com"
method="post"
enctype="text/plain"
>
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<!-- Footer Section -->
<footer class="footer">
<p class="footer-text">© 2024 Ajay Patil. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>