-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
337 lines (309 loc) · 15.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
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" crossorigin href="style.css">
<link rel="stylesheet" href="index.css">
</head>
<body style="overflow-x: hidden;">
<div class="container scroll-smooth snap-start">
<header class="h-screen w-screen md:pl-24 md:pr-16">
<nav
class="h-[50px] px-5 pt-2 flex fixed left-0 right-0 top-0 bg-white md:pt-0 z-50"
>
<div class="flex relative">
<button id="menutoggler" class="text-xl md:hidden">
<i class="fas fa-bars"></i>
</button>
<ul
id="menubar"
class="absolute shadow-sm bg-white border px-5 py-3 rounded top-12 opacity-0 transition-all duration-200 ease-in-out md:relative md:top-0 md:opacity-100 md:w-screen md:flex md:font-bold md:border-none md:px-24"
>
<li
class="px-3 py-1 cursor-pointer hover:bg-slate-200 rounded md:hover:bg-white md:hover:text-[#FF6464] transition-all duration-300 active"
>
<a href="index.html">Home</a>
</li>
<li
class="px-3 py-1 cursor-pointer hover:bg-slate-200 rounded md:hover:bg-white md:hover:text-[#FF6464] transition-all duration-300"
>
<a href="work.html">Works</a>
</li>
<li
class="px-3 py-1 cursor-pointer hover:bg-slate-200 rounded md:hover:bg-white md:hover:text-[#FF6464] transition-all duration-300"
>
<a href="blog.html">Blog</a>
</li>
<li
class="px-3 py-1 cursor-pointer hover:bg-slate-200 rounded md:hover:bg-white md:hover:text-[#FF6464] transition-all duration-300"
>
<a href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- hero section -->
<div
class="h-screen pt-20 md:pt-0 md:flex md:items-center md:justify-between gap-12 snap-start"
>
<div data-aos="fade-left"
data-aos-duration="1500"
class="md:order-2 md:mt-0 flex justify-center md:w-[40%]"
>
<img
class="h-[150px] w-[150px] md:h-[270px] md:w-[270px] rounded-full"
src="rahul.jpg"
alt=""
/>
</div>
<div data-aos="fade-right"
data-aos-duration="1500"
class="flex-col text-center px-5 md:w-[60%] mt-[50px] md:text-left"
>
<div class="px-10 md:px-0">
<h2 class="text-3xl font-bold md:text-4xl rahul">
<span id="element"></span><br />Creative Technologist
</h2>
</div>
<div class="mt-8 px-2 md:px-0">
<p class="text-gray-600 md:text-lg">
Amet minim mollit non deserunt ullamco est sit
aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit. Exercitation
veniam consequat sunt nostrud amet.
</p>
</div>
<button
class="border px-5 py-3 mt-12 rounded-sm transition text-white md:mt-16 bg-[#FF6464] hover:bg-[#dc4848]"
>
<a href="resume.pdf">Download Resume</a>
</button>
</div>
</div>
</header>
<!-- end the header section -->
<section
class="h-screen bg-[#EDF7FA] py-10 px-6 shadow-sm w-screen md:px-32 md:h-[40%] snap-start scroll-mt-12"
>
<div data-aos="flip-down"
class="flex justify-center mb-10 md:justify-between md:px-2"
>
<h2 class="font-semibold text-lg md:text-xl">
Recent posts
</h2>
<p class="hidden md:block md:text-blue-400"><a href="blog.html">View all</a></p>
</div>
<div data-aos="zoom-in-up"
data-aos-duration="1500"
class="md:flex gap-8">
<div class="bg-white p-5 rounded">
<div>
<h2 class="text-xl font-bold">
Making a design system from scratch
</h2>
</div>
<div class="flex my-3">
<p class="border-e-2 border-black me-10 pe-10">
17 Feb 2024
</p>
<p>Design, Pattern</p>
</div>
<div>
<p>
Amet minim mollit non deserunt ullamco est sit
aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit. Exercitation
veniam consequat sunt nostrud amet.
</p>
</div>
</div>
<div data-aos="zoom-in-up"
data-aos-duration="1500"
class="bg-white p-4 rounded mt-4 shadow-sm md:mt-0">
<div>
<h2 class="text-xl font-bold">
Creating pixel perfect icons in Figma
</h2>
</div>
<div class="flex my-3">
<p class="border-e-2 border-black me-10 pe-10">
17 Feb 2024
</p>
<p>Design, Pattern</p>
</div>
<div>
<p>
Amet minim mollit non deserunt ullamco est sit
aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit. Exercitation
veniam consequat sunt nostrud amet.
</p>
</div>
</div>
</div>
</section>
<section
class="h-full w-screen bg-white snap-start scroll-mt-12 px-5 py-12 md:px-32"
>
<div class="flex justify-center mb-10 md:sticky md:top-20 bg-white">
<h2 class="font-semibold text-lg md:text-xl">
Featured works
</h2>
</div>
<div data-aos="fade-up-right"
data-aos-duration="1500"
class="border-b-2 pb-8 md:sticky md:top-32 bg-white">
<div class="md:flex gap-12">
<div class="flex justify-center md:w-[60%]">
<img
class="rounded-lg h-[250px] w-[95%]"
src="section1.png"
alt=""
/>
</div>
<div class="px-3">
<div class="mt-5">
<h2 class="font-bold text-3xl text-gray-700">
Designing Dashboards
</h2>
</div>
<div class="flex items-center mt-4">
<p
class="px-5 py-1 font-bold bg-gray-600 text-xl text-white rounded-full"
>
2024
</p>
<p class="ms-7 text-gray-500 text-lg">
Dashboard
</p>
</div>
<div class="mt-5">
<p>
Amet minim mollit non deserunt ullamco est
sit aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit.
Exercitation veniam consequat sunt nostrud
amet.
</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-left"
data-aos-duration="3000"
class="border-b-2 pb-8 md:mt-12 hidden md:block md:sticky md:top-32 bg-white">
<div class="md:flex gap-12">
<div class="flex justify-center md:w-[60%]">
<img
class="rounded-lg h-[250px] w-[95%]"
src="section2.png"
alt=""
/>
</div>
<div class="px-3">
<div class="mt-5">
<h2 class="font-bold text-3xl text-gray-700">
Vibrant Portraits of 2020
</h2>
</div>
<div class="flex items-center mt-4">
<p
class="px-5 py-1 font-bold bg-gray-600 text-xl text-white rounded-full"
>
2022
</p>
<p class="ms-7 text-gray-500 text-lg">
Illustration
</p>
</div>
<div class="mt-5">
<p>
Amet minim mollit non deserunt ullamco est
sit aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit.
Exercitation veniam consequat sunt nostrud
amet.
</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-up-right"
data-aos-duration="1500"
class="border-b-2 pb-8 md:mt-12 hidden md:block md:sticky md:top-32 bg-white">
<div class="md:flex gap-12">
<div class="flex justify-center md:w-[60%]">
<img
class="rounded-lg h-[250px] w-[95%]"
src="section3.png"
alt=""
/>
</div>
<div class="px-3">
<div class="mt-5">
<h2 class="font-bold text-3xl text-gray-700">
36 Days of Malayalam type
</h2>
</div>
<div class="flex items-center mt-4">
<p
class="px-5 py-1 font-bold bg-gray-600 text-xl text-white rounded-full"
>
2020
</p>
<p class="ms-7 text-gray-500 text-lg">
Typography
</p>
</div>
<div class="mt-5">
<p>
Amet minim mollit non deserunt ullamco est
sit aliqua dolor do amet sint. Velit officia
consequat duis enim velit mollit.
Exercitation veniam consequat sunt nostrud
amet.
</p>
</div>
</div>
</div>
</div>
</section>
</div>
<footer id="contact"
data-aos="flip-up"
class="h-full w-screen bg-white px-7 py-16 text-center snap-end">
<div class="flex justify-center gap-8 text-2xl mb-5">
<a href="https://www.facebook.com/profile.php?id=100026489917048&mibextid=ZbWKwL"><i class="fa-brands fa-square-facebook"></i></a>
<a href="https://www.instagram.com/rahulroynipon"><i class="fa-brands fa-instagram"></i></a>
<a href="https://github.com/rahulroynipon"><i class="fa-brands fa-github"></i></a>
<a href="mailto:rahulroynipon@gmail.com"><i class="fa-solid fa-envelope"></i></a>
</div>
<div class="mb-5 text-gray-500"><p>Copyright ©2024 All rights reserved </p></div>
</footer>
<!-- javaScript -->
<script src="javascript.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script>
AOS.init();
</script>
<script>
setTimeout(() => {
let typed = new Typed('#element', {
strings: ['Hi, I am Rahul,'],
typeSpeed: 150,
});
}, 620);
</script>
</body>
</html>