-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
436 lines (399 loc) · 16.5 KB
/
Copy pathindex.html
File metadata and controls
436 lines (399 loc) · 16.5 KB
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
<!--
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 devsyedmohsin@gmail.com -->
<!--
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 back-end web developer and I specialize in creating alternative of some app that I use."
/>
<!-- 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>ABCraft19'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 am ABCraft19</span>
<span>Backend Web Developer</span>
</h1>
<!-- Add a small introductory paragraph about yourself -->
<p class="header-text">
A backtend software engineer and like to play with servers.
I like to build some complex app.
</p>
<div class="header-btns">
<a href="#contact" class="btn btn-cta">Contact me</a>
<a href="#work" class="btn btn-secondary">See my projects</a>
</div>
</div>
</div>
</header>
<main>
<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>
<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>
</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/ABCraft19" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/github.svg"
alt="GitHub"
/></a>
</li>
<li class="footer-link">
<a title="Matrix" href="https://matrix.to/#/@abcraft:matrix.org" target="_blank" rel="noopener"
><img
loading="lazy"
src="assets/images/social-links/element.svg"
alt="Matrix"
/></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>