-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
418 lines (409 loc) · 15.2 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
<!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" />
<script
src="https://kit.fontawesome.com/4a30d59e86.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>Uzair Manzoor - Portfolio</title>
</head>
<body>
<div id="body-wrapper">
<header>
<div class="top-bar">
<a href="#" class="logo">Uzair Manzoor</a>
<nav class="nav-bar">
<ul class="bar-menu">
<li><i class="fa-solid fa-bars"></i></li>
</ul>
<ul class="menu pop-up hidden">
<li><i class="fa-solid fa-xmark close"></i></li>
<li><a href="#portfolio" class="menu-item">Portfolio</a></li>
<li><a href="#about" class="menu-item">About</a></li>
<li><a href="#contact" class="menu-item">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="headline">
<div>
<h1 class="headline-text drop-in">
I'm Uzair. <br />
Glad to see you!
</h1>
<h2 class="supporting-text drop-in-1">
Dedicated to creating seamless user experiences through a combination of intuitive front-end designs and robust back-end functionalities. I'm a <strong>full-stack web developer</strong> skilled in a wide range of languages, frameworks, and technologies. I can help you build a product, feature or website. Look through some of my work and experience! If you like what you see and have a project you need coded, don't hesitate to contact me.
</h2>
<button type="button" class="connect drop-in-2">LET'S CONNECT</button>
<ul class="social-icons drop-in-3">
<li class="icon twitter">
<span class="tooltip">Twitter</span>
<a
class="icons"
href="https://twitter.com/uzairkiyani5555"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-twitter twitter"
aria-hidden="true">
</i>
<span class="fa-sr-only">Twitter</span>
</a>
</li>
<li class="icon linkedin">
<span class="tooltip">LinkedIn</span>
<a
class="icons"
href="https://www.linkedin.com/in/uzair-manzoor5/"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-linkedin-in"
aria-hidden="true">
</i>
<span class="fa-sr-only">LinkedIn</span>
</a>
</li>
<li class="icon mail">
<span class="tooltip">Gmail</span>
<a
class="icons"
href="mailto:[email protected]"
target="_blank"
rel="noopener"
>
<i
class="fa-solid fa-m"
aria-hidden="true">
</i>
<span class="fa-sr-only">Gmail</span>
</a>
</li>
<li class="icon github">
<span class="tooltip">GitHub</span>
<a
class="icons"
href="https://github.com/Uzair-Manzoor"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-github"
aria-hidden="true">
</i>
<span class="fa-sr-only">GitHub</span>
</a>
</li>
<li class="icon wellfound">
<span class="tooltip">WellFound</span>
<a
class="icons"
href="https://wellfound.com/u/uzair-kiyani"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-angellist"
aria-hidden="true">
</i>
<span class="fa-sr-only">Angellist</span>
</a>
</li>
</ul>
</div>
</section>
<div class="recent-work" id="portfolio"></div>
<div class="project-popup-container"></div>
<section class="about" id="about">
<div>
<div class="about-content">
<h2 class="headline-text about-title">About Myself</h2>
<p class="supporting-text about-description">
Experienced full-stack developer ready to bring your project to life. Skilled in product, feature, and website development. Explore my portfolio and let's collaborate on your next venture. Contact me to discuss your project needs.
</p>
<button type="button" class="connect">LET'S CONNECT</button>
<ul class="social-icons">
<li class="icon twitter">
<span class="tooltip">Twitter</span>
<a
class="icons"
href="https://twitter.com/uzairkiyani5555"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-twitter twitter"
aria-hidden="true">
</i>
<span class="fa-sr-only">Twitter</span>
</a>
</li>
<li class="icon linkedin">
<span class="tooltip">LinkedIn</span>
<a
class="icons"
href="https://www.linkedin.com/in/uzair-manzoor5/"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-linkedin-in"
aria-hidden="true">
</i>
<span class="fa-sr-only">LinkedIn</span>
</a>
</li>
<li class="icon mail">
<span class="tooltip">Gmail</span>
<a
class="icons"
href="mailto:[email protected]"
target="_blank"
rel="noopener"
>
<i
class="fa-solid fa-m"
aria-hidden="true">
</i>
<span class="fa-sr-only">Gmail</span>
</a>
</li>
<li class="icon github">
<span class="tooltip">GitHub</span>
<a
class="icons"
href="https://github.com/Uzair-Manzoor"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-github"
aria-hidden="true">
</i>
<span class="fa-sr-only">GitHub</span>
</a>
</li>
<li class="icon wellfound">
<span class="tooltip">WellFound</span>
<a
class="icons"
href="https://wellfound.com/u/uzair-kiyani"
target="_blank"
rel="noopener"
>
<i
class="fa-brands fa-angellist"
aria-hidden="true">
</i>
<span class="fa-sr-only">Angellist</span>
</a>
</li>
</ul>
<a href="https://docs.google.com/document/d/1pSbHpRplRsOp_-_rlUY22hBUt9XGUI1ANYA0wmibGpM/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="resume-btn button">Get my resume</a>
</div>
<div class="skills">
<ul>
<li class="skill-item active">
<div class="item-1-header">
Languages <i class="fa-solid fa-angle-down down arrow"></i>
</div>
<div class="item-1-list">
<ul>
<li class="fly-in-1">
<img
src="./images/languages/HTML.svg"
alt="HTML"
/>
HTML
</li>
<li class="fly-in-2">
<img src="./images/languages/CSS.svg" alt="CSS" />
CSS
</li>
<li class="fly-in-3">
<img
src="./images/languages/JavaScript.svg"
alt="JavaScript"
/>
JavaScript
</li>
<!-- <li class="fly-in-4" >
<img
src="./images/languages/MySQL.png"
alt="MySQL"
/>
MySQL
</li> -->
<li class="fly-in-5" >
<img
src="./images/languages/PostgreSQL.png"
alt="PostgreSQL"
/>
PostgreSQL
</li>
<li class="fly-in-6" >
<img src="./images/languages/Ruby.svg" alt="Ruby" />
Ruby
</li>
</ul>
</div>
</li>
<li class="skill-item">
<div class="item-1-header">
Frameworks <i class="fa-solid fa-angle-right next arrow"></i>
</div>
<div class="item-1-list">
<ul>
<li class="fly-in-1">
<img
src="./images/frameworks/Bootstrap.svg"
alt="RoR"
/>
Bootstrap
</li>
<li class="fly-in-2">
<img
src="./images/frameworks/React.svg"
alt="React"
/>
React
</li>
<li class="fly-in-3">
<img
src="./images/frameworks/tailwind.png"
alt="Tailwind"
/>
Tailwind
</li>
<li class="fly-in-4">
<img
src="./images/frameworks//Redux.png"
alt="Redux"
/>
Redux
</li>
<li class="fly-in-5">
<img
src="./images/frameworks/Rails.svg"
alt="Ruby on Rails"
/>
RoR
</li>
<li class="fly-in-6">
<img
src="./images/frameworks/Rspec.png"
alt="Rspec"
/>
Rspec
</li>
</ul>
</div>
</li>
<li class="skill-item">
<div class="item-1-header">
Skills <i class="fa-solid fa-angle-right next arrow"></i>
</div>
<div class="item-1-list">
<ul>
<li class="fly-in-1">
<img
src="./images/skills/GitHub.svg"
alt="GitHub"
/>
GitHub
</li>
<!-- <li class="fly-in-2">
<img
src="./images/skills/GitLab.svg"
alt="GitLab"
/>
GitLab
</li> -->
<li class="fly-in-3">
<img
src="./images/skills/Teamwork.png"
alt="Teamwork"
/>
Teamwork
</li>
<li class="fly-in-4">
<img
src="./images/skills/Mentoring.png"
alt="Mentoring"
/>
Mentoring
</li>
<!-- <li class="fly-in-5">
<img
src="./images/skills/Analytical.png"
alt="Analytical"
/>
Analytical
</li> -->
</ul>
</div>
</li>
</ul>
</div>
</div>
</section>
</main>
<footer id="contact">
<section class="contact-form">
<div class="contact-wrapper">
<div>
<h2 class="contact-title">Contact me</h2>
<p class="contact-description">
I'm always interested in hearing about new projects, so if you'd like to chat, please get in touch.
</p>
<form
action="https://formspree.io/f/mwkgbvkj"
method="POST"
id="form"
>
<label hidden for="text"> Name</label>
<input
type="text"
id="text"
name="text"
maxlength="30"
placeholder="Enter your name"
required
/>
<label hidden for="text"> Email</label>
<input
type="email"
name="email"
id="email"
placeholder="Enter your email"
required
/>
<label hidden for="text"> Add your coment</label>
<textarea
name="comment"
id="comment"
maxlength="500"
placeholder="Write your message here"
required
></textarea>
<button type="submit" class="form-btn button">
Get In Touch
</button>
<span class="message"></span>
</form>
</div>
</div>
</section>
</footer>
</div>
<script src="./script.js"></script>
</body>
</html>