-
Notifications
You must be signed in to change notification settings - Fork 92
/
index.html
720 lines (672 loc) · 28.4 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
<!--
Greetings!
This delightful template has been meticulously crafted and brought to life by Syed Mohsin. It is generously shared with the world, inviting you to unleash your creativity and tailor it to your heart's content.
-->
<!-- For any inquiries or collaborations reach out to me at [email protected] -->
<!--
Embrace the guidance inscribed within the comments below to fashion an awe-inspiring portfolio of your own.
-->
<!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" />
<meta name="robots" content="index, follow" />
<!-- Read and update content attributes accordingly -->
<meta
name="description"
content="Welcome to my portfolio website. I am a front-end web developer and I specialize in creating user-friendly, responsive and accessible websites. Explore my projects, open-source work and contact me for any inquiries or collaborations."
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Syed Mohsin's Portfolio">
<meta itemprop="description" content="Welcome to my portfolio website. I am a front-end web developer and I specialize in creating user-friendly, responsive and accessible websites. Explore my projects, open-source work and contact me for any inquiries or collaborations.">
<!-- Reference screenshot of updated site's header in place of content -->
<meta itemprop="image" content="assets/images/sharing-card.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://ossportfolio.netlify.app">
<meta property="og:type" content="website">
<meta property="og:title" content="Syed Mohsin's Portfolio">
<meta property="og:description" content="Welcome to my portfolio website. I am a front-end web developer and I specialize in creating user-friendly, responsive and accessible websites. Explore my projects, open-source work and contact me for any inquiries or collaborations.">
<!-- Reference screenshot of updated site's header in content -->
<meta property="og:image" content="assets/images/sharing-card.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Syed Mohsin's Portfolio">
<meta name="twitter:description" content="Welcome to my portfolio website. I am a front-end web developer and I specialize in creating user-friendly, responsive and accessible websites. Explore my projects, open-source work and contact me for any inquiries or collaborations.">
<!-- Reference screenshot of updated site's header in content -->
<meta name="twitter:image" content="assets/images/sharing-card.png">
<!-- Update favicon href attribute with image of yourself -->
<link
rel="shortcut icon"
href="assets/images/favicons.png"
type="image/png"
/>
<!-- Preloading fonts for better performance -->
<link
rel="preload"
href="assets/fonts/Mona-Sans.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<!-- Your name here -->
<title>Syed Mohsin's Portfolio</title>
</head>
<body>
<script>
const theme = localStorage.getItem("theme") || "dark";
document.body.classList.add(theme);
</script>
<header class="header">
<div class="menu-btn-container">
<div class="container">
<button type="button" class="menu-btn">menu</button>
</div>
</div>
<nav class="nav hidden">
<ol class="nav-items">
<li class="nav-item"><a href="#">Home</a></li>
<li class="nav-item"><a href="#work">My Work</a></li>
<li class="nav-item"><a href="#blog">See Blog</a></li>
<li class="nav-item"><a href="#skills">My Skills</a></li>
<li class="nav-item">
<a href="#contact" data-focused="last-focused">Contact</a>
</li>
</ol>
</nav>
<div class="container">
<div class="header-textbox">
<!-- Replace with your name and job title -->
<h1 class="h1">
<span>Hi, I'm Syed Mohsin</span>
<span>Frontend Web Developer</span>
</h1>
<!-- Add a small introductory paragraph about yourself -->
<p class="header-text">
A frontend software engineer and interface designer who builds UX
rich accessible and performant websites.
</p>
<div class="header-btns">
<a href="#contact" class="btn btn-cta">Hire me</a>
<a href="#work" class="btn btn-secondary">See my work</a>
</div>
</div>
</div>
</header>
<main>
<section class="client">
<div class="container">
<h2 class="h2">Trusted by</h2>
<div class="logos">
<!-- Replace alt with client/company name and src attributes of images with path to relative img of client logo -->
<div class="logo-group">
<img
loading="lazy"
src="assets/images/trusted-by/stripe.svg"
alt="Ideacraft"
class="logo hide to-top"
/>
<img
loading="lazy"
src="assets/images/trusted-by/datastax.svg"
alt="Golden grid"
class="logo"
/>
<img
loading="lazy"
src="assets/images/trusted-by/coke.svg"
alt="Theia"
class="logo hide to-bottom"
/>
</div>
<div class="logo-group">
<img
loading="lazy"
src="assets/images/trusted-by/gm.svg"
alt="General motors"
class="logo hide to-top"
/>
<img
loading="lazy"
src="assets/images/trusted-by/shares.svg"
alt="Chippy"
class="logo"
/>
<img
loading="lazy"
src="assets/images/trusted-by/shopify.svg"
alt="Shopify"
class="logo hide to-bottom"
/>
</div>
<div class="logo-group">
<img
loading="lazy"
src="assets/images/trusted-by/agency-elevation.svg"
alt="Agency elevation"
class="logo hide to-top"
/><img
loading="lazy"
src="assets/images/trusted-by/gitlab.svg"
alt="Ron jones"
class="logo"
/><img
loading="lazy"
src="assets/images/trusted-by/duolingo.svg"
alt="Mighty furniture's"
class="logo hide to-bottom"
/>
</div>
<div class="logo-group">
<img
loading="lazy"
src="assets/images/trusted-by/coyote.svg"
alt="Bulls eye"
class="logo hide to-top"
/>
<img
loading="lazy"
src="assets/images/trusted-by/astrato.svg"
alt="Chippy"
class="logo"
/>
<img
loading="lazy"
src="assets/images/trusted-by/mercado.svg"
alt="Fastlane"
class="logo hide to-bottom"
/>
</div>
</div>
</div>
</section>
<section class="work">
<div class="container">
<h2 class="h2" id="work">Selected Work</h2>
<div class="work-boxes">
<div class="work-box">
<div class="work-textbox">
<!-- Add your project title here -->
<h3 class="h3">portfolio template</h3>
<!-- Add small description of your project -->
<p class="work-text">
A free to use, minimal and accessible portfolio template for
developers.
</p>
<!-- Add technologies you used to build the project -->
<ol class="work-technologies">
<li>React</li>
<li>Gatsby</li>
<li>SCSS</li>
<li>MDX</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="https://github.com/devsyedmohsin" target="_blank" rel="noopener" class="link"
>Explore this project</a
>
<!-- Add link to project source code in href attribute if applicable otherwise feel free to delete or comment the markup -->
<a
href="https://github.com/devsyedmohsin"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/portfolio-template.webp"
alt="agency elevation"
/>
</picture>
</div>
<div class="work-box">
<div class="work-textbox">
<!-- Add your project title here -->
<h3 class="h3">agencyelevation.com</h3>
<!-- Add small description of your project -->
<p class="work-text">Website for Agency Elevation.</p>
<ol class="work-technologies">
<li>React</li>
<li>Gatsby</li>
<li>Material UI</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="#" target="_blank" rel="noopener" class="link"
>Explore this project</a
>
<!-- Add link to project source code in href attribute if applicable otherwise feel free to delete or comment the markup -->
<a
href="http://github.com/devsyedmohsin"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/agency-elevation.webp"
alt="portfolio template"
/>
</picture>
</div>
<div class="work-box">
<div class="work-textbox">
<!-- Add your project title here -->
<h3 class="h3">contribute.dev</h3>
<!-- Add small description of your project -->
<p class="work-text">
Website for DevX A dedicated space for developer experience
</p>
<ol class="work-technologies">
<li>Ruby</li>
<li>SvelteKit</li>
<li>Emotion</li>
</ol>
<div class="work-links">
<!-- Add url of project in href attribute -->
<a href="#" target="_blank" rel="noopener" class="link"
>Explore this project</a
>
<!-- Add link to project source code in href attribute if applicable otherwise feel free to delete or comment the markup -->
<a
href="#"
target="_blank"
rel="noopener"
title="Source code"
>
<img
src="assets/images/social-links/github.svg"
alt="GitHub"
loading="lazy"
/>
</a>
</div>
</div>
<!-- Update img src and alt attribute -->
<picture class="work-img">
<img
loading="lazy"
src="assets/images/work/contribute-dev.webp"
alt="contribute dev"
/>
</picture>
</div>
</div>
</div>
</section>
<!-- I write blog posts on dev.to at https://dev.to/devsyedmohsin. I have linked my articles accordingly, so please update the article title, description, and link accordingly. For example, if you write an article on Medium, link your article to Medium. Also, don't forget to update the reaction count. -->
<section class="article">
<div class="container">
<h2 class="h2" id="blog">My Articles</h2>
<div class="article-boxes">
<article class="article-box featured-article">
<div class="article-textbox">
<div>
<h3 class="h3">
22 Useful CSS Tips and Tricks Every Developer Should Know
</h3>
<p class="article-text">
Note: All the tips, tricks shared in this article are part
of my GitHub repository css tips tricks A handmade
collection of pro css tips tricks for developers.
</p>
</div>
<div class="article-info">
<a href="https://dev.to/devsyedmohsin" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img src="./assets/images/heart-outline.svg" alt="heart" />
416
</span>
</div>
</div>
<picture class="article-illustration">
<img
src="assets/images/featured-blog.webp"
alt="MacBook Pro"
loading="lazy"
/>
</picture>
</article>
<article class="article-box">
<div class="article-textbox">
<div>
<h3 class="h4">JavaScript Default Function Parameters.</h3>
<p class="article-text">
In JavaScript when we call a function which expects some
data to be passed in if you call that without passing
</p>
</div>
<div class="article-info">
<a href="https://dev.to/devsyedmohsin" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
src="./assets/images/heart-outline.svg"
alt="heart"
loading="lazy"
/>
47
</span>
</div>
</div>
</article>
<article class="article-box">
<div class="article-textbox">
<div>
<h3 class="h4">
Free Open-source portfolio template for developers ✨
</h3>
<p class="article-text">
A beautiful, minimal and accessible portfolio template for
Developers which is completely free and Open Source.
</p>
</div>
<div class="article-info">
<a href="https://dev.to/devsyedmohsin/free-open-source-portfolio-template-for-developers-4g1d" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
src="./assets/images/heart-outline.svg"
alt="heart"
loading="lazy"
/>
177
</span>
</div>
</div>
</article>
<article class="article-box">
<div class="article-textbox">
<div>
<h3 class="h4">HTML tips and tricks.</h3>
<div class="article-text">
In my very last article I shared some JavaScript tips and
tricks In this article I will be covering HTML tips and
tricks.
</div>
</div>
<div class="article-info">
<a href="https://dev.to/devsyedmohsin" class="link" target="_blank" rel="noopener"
>Continue reading</a
>
<span class="reaction-count">
<img
loading="lazy"
src="./assets/images/heart-outline.svg"
alt="heart"
/>
350
</span>
</div>
</div>
</article>
</div>
</div>
</section>
<!-- Update skills-img src, alt and title attributes I have added some other logos in assets/images/skill for your convenience feel free to pick one if required -->
<section class="skills">
<div class="container">
<h2 class="h2" id="skills">My Toolkit</h2>
<div class="skills-imgs">
<img src="assets/images/skills/react.webp" alt="React" class="skills-img" loading="lazy" title="React">
<img src="assets/images/skills/svelte.webp" alt="Svelte" class="skills-img" loading="lazy" title="Svelte">
<img src="assets/images/skills/typescript.webp" alt="Typescript" class="skills-img" loading="lazy" title="Typescript">
<img src="assets/images/skills/a11y.webp" alt="Accessibility" class="skills-img" loading="lazy" title="Web Accessibility">
<img src="assets/images/skills/shell.webp" alt="Shell" class="skills-img" loading="lazy" title="Shell">
<img src="assets/images/skills/next-js.webp" alt="NextJS" class="skills-img" loading="lazy" title="NextJS">
<img src="assets/images/skills/graphql.webp" alt="Graph Ql" class="skills-img" loading="lazy" title="Graph QL">
<img src="assets/images/skills/git.webp" alt="Git" class="skills-img" loading="lazy" title="Git">
<img src="assets/images/skills/html.webp" alt="CSS" class="skills-img" loading="lazy" title="CSS">
<img src="assets/images/skills/js.webp" alt="JavaScript" class="skills-img" loading="lazy" title="JavaScript">
</figure>
</div>
</div>
</section>
<!-- Replace testimonials, author name, author job, img src and, alt attributes -->
<section>
<h2 class="h2">Testimonials</h2>
<div class="container">
<ol class="testimonials">
<li class="testimonial">
<blockquote class="testimonial-text">
Working with Syed was a great experience. His drive for clean aesthetics and his open communication style helped us collaborate closely on the solution.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/rich-harris.png"
alt="Rich Harris"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">Harris Kareem</h3>
<p class="testimonial-author-job">Developer @Outlets</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Syed is a fantastic UI/UX designer and developer with a keen sense for marketing, and lead generation. He's the only designer I know who also has a deep understanding for code and front-end development.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/frank-mcsherry.webp"
alt="Andrew Mead"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">
Andrew Mead
</h3>
<p class="testimonial-author-job">Chief Scientist @Logos
</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Talented artist, experienced with various
media and can make any project you are working on look good. He is
easy to work with and is a self starter. I would work with Syed
again.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/brian-hirsh.png"
alt="Brian Hirsh"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">Brian Hirsh</h3>
<p class="testimonial-author-job">Head @Zero-in</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Syed is a true professional with amazing talent. He is a creative
thinker, has his finger on the pulse of whats to come, and
absolutely one of the quickest and best problem solvers I have
ever met.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/adam.png"
alt="Adam Argalye"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">Adam Argalye</h3>
<p class="testimonial-author-job">SWE @Google</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Syed is one of my favourite people to work with. He's my go-to colleague when trouble shooting any new technique or technology because she understands how to tackle unknown problems with gumption.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/val-head.png"
alt="Val Head"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">Val Head</h3>
<p class="testimonial-author-job">CEO @Engines</p>
</figcaption>
</figure>
</li>
<li class="testimonial">
<blockquote class="testimonial-text">
Syed is a talented artist. He is very experienced with various
media and can make any project you are working on look good. He is
easy to work with and is a self starter. I would work with Syed
again.
</blockquote>
<figure class="testimonial-author">
<img
src="assets/images/testimonials/tim-satterwhite.webp"
alt="Gary Simon"
loading="lazy"
/>
<figcaption>
<h3 class="testimonial-author-name">Gary Simon</h3>
<p class="testimonial-author-job">A11y Advocate @W3C</p>
</figcaption>
</figure>
</li>
</ol>
</div>
</section>
<section class="contact">
<div class="container">
<h2 class="h2" id="contact">Send Message</h2>
<div class="contact-content">
<div class="contact-textbox">
<!-- Please comment this component if you're not available for hire -->
<strong href="#" class="hire-alert">
<span class="indicator"></span>
Available for hire
</strong>
<p class="contact-text">
As a software engineer, I construct web interfaces and design
systems with a special love for accessibility and the
performance. I tend to code things from scratch and enjoy
bringing ideas to life.
</p>
<p class="contact-text">
I'm also an open-source developer, and in my spare time, I do
digital art with my iPad Pro.
</p>
<!-- Replace src with your signatures and name -->
<img
src="assets/images/signatures.png"
alt="Syed Mohsin"
class="signatures"
loading="lazy"
/>
</div>
<form action="#" class="contact-form" netlify>
<div class="form-field">
<label for="name">Name</label>
<input type="text" name="name" id="name" required />
</div>
<div class="form-field">
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
required
inputmode="email"
/>
</div>
<div class="form-field">
<label for="message">How can I help you?</label>
<textarea name="message" id="message" required></textarea>
</div>
<button type="submit" class="btn btn-cta">Send</button>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content">
<!-- Update href and src attributes -->
<nav>
<ol class="footer-links">
<li class="footer-link">
<a title="GitHub" href="https://github.com/devsyedmohsin" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/github.svg"
alt="GitHub"
/></a>
</li>
<li class="footer-link">
<a title="Codepen" href="https://github.com/devsyedmohsin" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/codepen.svg"
alt="Codepen"
/></a>
</li>
<li class="footer-link">
<a title="Linkedin" href="https://www.linkedin.com/in/syed-mohisn-raza-393177262/" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/linkedin.svg"
alt="Linkedin"
/></a>
</li>
<li class="footer-link">
<a title="Twitter" href="https://github.com/devsyedmohsin" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/twitter.svg"
alt="Twitter"
/></a>
</li>
</ol>
</nav>
<p class="footer-text">
© <span>2024</span> - Template designed & developed by <a target="_blank" rel="noopener" href="https://github.com/devsyedmohsin">Syed Mohsin.</a>
</p>
<label class="theme-switch" for="theme-switch">
<span>Dark Theme</span>
<input type="checkbox" id="theme-switch" role="switch"/>
</label>
</div>
</div>
</footer>
</body>
</html>