-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
452 lines (289 loc) · 12.3 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
<!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">
<!--
- primary meta tags
-->
<title>Archie Shah</title>
<meta name="title" content="Archie Shah">
<meta name="description" content="Portfolio Website">
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- custom font link
-->
<link rel="stylesheet" href="./assets/font/font.css">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/loading.svg">
<link rel="preload" as="image" href="./assets/images/loading-circle.svg">
</head>
<body class="active" id="top">
<!--
-#PRELOADING
-->
<div class="loading" data-loading>
<img src="./assets/images/loading.svg" width="55" height="55" alt="loading" class="img">
<img src="./assets/images/loading-circle.svg" width="70" height="70" alt="" class="circle">
</div>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<img src="./assets/images/logo.svg" width="40" height="40" alt="Richard home">
</a>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<img src="./assets/images/menu.svg" width="17" height="17" alt="menu icon">
</button>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="#" class="logo">
<img src="./assets/images/logo.svg" width="40" height="40" alt="Richard home" class="img">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<span class="span one"></span>
<span class="span two"></span>
</button>
</div>
<ul class="navbar-list">
<li class="navbar-item">
<a href="#home" class="navbar-link" data-nav-link>Home</a>
</li>
<li class="navbar-item">
<a href="#about" class="navbar-link" data-nav-link>About</a>
</li>
<li class="navbar-item">
<a href="#services" class="navbar-link" data-nav-link>Portfolio</a>
</li>
<li class="navbar-item">
<a href="#contact" class="navbar-link" data-nav-link>Contact us</a>
</li>
</ul>
</nav>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="section hero" id="home" aria-label="home">
<div class="container">
<!-- <img src="./assets/images/hero-banner.png" width="322" height="322" alt="" class="hero-banner"> -->
<div class="hero-content">
<h1 class="h1 hero-title">Archie Shah</h1>
<div class="wrapper h2">
<strong class="strong" data-letter-effect>Web Developer</strong>
<strong class="strong" data-letter-effect>IT Engineer</strong>
<strong class="strong" data-letter-effect>Civil Engineer</strong>
<strong class="strong" data-letter-effect>Dancer</strong>
</div>
<p class="hero-text">1 Years Of Experience</p>
</div>
</div>
<img src="./assets/images/hero-shape.svg" width="211" height="189" alt="" class="shape">
</section>
<!--ABOUT-->
<section class="section about" id="about" aria-label="about me">
<div class="container">
<div class="about-content">
<h2 class="h2 section-title" data-reveal="right">
Hello, I’m <br>
Archie Shah
</h2>
<div class="wrapper has-before" data-reveal="right">
<p class="section-text">
A passionate
<em class="em">Web Developer</em>
with proficiency and expertise in
<em class="em">Frontend.</em>
I’m ready to give you my best.
</p>
<button class="login-btn">
<a href="assets/Archie Sachin Shah (3).pdf" download="Archie Sachin Shah Resume.pdf">
<span class="span">Download Resume</span>
</a>
</div>
</div>
<figure class="about-banner" data-reveal="left">
<div class="img-holder has-before" style="--width: 512; --height: 684;">
<img src="./assets/images/pfp-edit.jpeg" width="512" height="684" loading="lazy" alt="Archie Shah"
class="img-cover">
</div>
<img src="./assets/images/about-shape-2.svg" width="659" height="653" loading="lazy" alt=""
class="shape shape-2">
</figure>
<img src="./assets/images/about-shape-3.svg" width="239" height="232" loading="lazy" alt=""
class="shape shape-3">
</div>
</section>
<!--
- #Projects
-->
<section class="section service" id="services" aria-labelledby="service-lable">
<p class="section-subtitle container" id="service-lable">My Projects</p>
<ul class="service-list">
<li data-reveal>
<div class="service-card container">
<img src="./assets/images/Snoozz-1.png" loading="lazy" alt="Videography"
class="img" style="width: 380px; height: 340px; z-index: 1;">
<div>
<h3 class="h3 card-title">Snoozz Productions</h3>
<p class="card-subtitle">
Portfolio of a service based company.
</p>
</div>
<a href="https://snoozz.in/" class="btn-icon" aria-label="See more">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="20" viewBox="0 0 43 20" fill="none">
<path d="M0 10H41" stroke="white" stroke-width="2" />
<path d="M33 1L41.9 10.2727L33 19" stroke="white" stroke-width="2" />
</svg>
</a>
</div>
</li>
<li data-reveal>
<div class="service-card container">
<img src="./assets/images/NC Luxury Interior Design (1).png" loading="lazy" alt="Videography"
class="img" style="width: 380px; height: 340px;">
<div>
<h3 class="h3 card-title">NC Design</h3>
<p class="card-subtitle">
Portfolio of NC Interior Luxury Design.
</p>
</div>
<a href="http://nikychadha.com/" class="btn-icon" aria-label="See more">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="20" viewBox="0 0 43 20" fill="none">
<path d="M0 10H41" stroke="white" stroke-width="2" />
<path d="M33 1L41.9 10.2727L33 19" stroke="white" stroke-width="2" />
</svg>
</a>
</div>
</li>
<li data-reveal>
<div class="service-card container">
<img src="./assets/images/Steam_punk.png" loading="lazy" alt="Wedding Photography"
class="img" style="width: 340px; height: 380px;">
<div>
<h3 class="h3 card-title">Steam Punk</h3>
<p class="card-subtitle">
JavaScript Based Game
</p>
</div>
<a href="https://github.com/Archiesachin/Steam_Punk" class="btn-icon" aria-label="See more">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="20" viewBox="0 0 43 20" fill="none">
<path d="M0 10H41" stroke="white" stroke-width="2" />
<path d="M33 1L41.9 10.2727L33 19" stroke="white" stroke-width="2" />
</svg>
</a>
</div>
</li>
<li data-reveal>
<div class="service-card container">
<img src="./assets/images/CineVerse.png" loading="lazy" alt="Event Organiser"
class="img" style="width: 340px; height: 380px;">
<div>
<h3 class="h3 card-title">CineVerse</h3>
<p class="card-subtitle">
Movie Recommendation System.
</p>
</div>
<a href="https://github.com/Archiesachin/CineVerse-Movie_Rec" class="btn-icon" aria-label="See more">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="20" viewBox="0 0 43 20" fill="none">
<path d="M0 10H41" stroke="white" stroke-width="2" />
<path d="M33 1L41.9 10.2727L33 19" stroke="white" stroke-width="2" />
</svg>
</a>
</div>
</li>
<li data-reveal>
<div class="service-card container">
<img src="./assets/images/HealthBridge.png" loading="lazy" alt="Product Marketing"
class="img" style="width: 340px; height: 380px;">
<div>
<h3 class="h3 card-title">Health Bridge</h3>
<p class="card-subtitle">
Electronic Health Record System
</p>
</div>
<a href="https://github.com/Archiesachin/HealthBridge" class="btn-icon" aria-label="See more">
<svg xmlns="http://www.w3.org/2000/svg" width="43" height="20" viewBox="0 0 43 20" fill="none">
<path d="M0 10H41" stroke="white" stroke-width="2" />
<path d="M33 1L41.9 10.2727L33 19" stroke="white" stroke-width="2" />
</svg>
</a>
</div>
</li>
</ul>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer">
<div class="footer-top section" id="contact">
<div class="container">
<p class="section-subtitle" data-reveal>Contact Me</p>
<h2 class="h2 section-title" data-reveal>
Work inquiry, Job opportunities? Send Message.
</h2>
<a href="mailto:[email protected]" class="btn-icon" data-reveal>
<img src="./assets/images/arrow-forward.svg" width="43" height="20" loading="lazy" alt="arrow-forward icon">
</a>
<img src="./assets/images/footer-shape.svg" width="185" height="134" loading="lazy" alt="" class="shape">
</div>
</div>
<div class="footer-bottom">
<div class="container">
<a href="#" class="logo">
<img src="./assets/images/logo.svg" width="40" height="40" loading="lazy" alt="Archie home">
</a>
<ul class="social-list">
<li>
<a href="https://www.linkedin.com/in/archie-shah-22b35124a/" class="social-link">In.</a>
</li>
<li>
<a href="https://github.com/Archiesachin" class="social-link">Git.</a>
</li>
<li>
<a href="https://www.instagram.com/archie.shah_/" class="social-link">Insta.</a>
</li>
<li>
<a href="https://x.com/archie__shah?t=TYiW6GA-9GVByU8hMwvOQg&s=08" class="social-link">Tw.</a>
</li>
</ul>
<p class="copyright">Made with love @Archie</p>
</div>
</div>
<div class="footer-bg has-before">
<img src="./assets/images/footer-bg.jpg" width="1920" height="1135" loading="lazy" alt="photography"
class="img-cover">
</div>
</footer>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn" aria-label="back to top" data-back-top-btn>0%</a>
<!--
- #CUSTOM CURSOR
-->
<div class="cursor" data-cursor></div>
<!--
- custom js link
-->
<script src="./assets/js/script.js"></script>
</body>
</html>