-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
551 lines (469 loc) · 24.5 KB
/
index.html
File metadata and controls
551 lines (469 loc) · 24.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
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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Estifdev - Portfolio</title>
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts: Outfit + Ovo -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Ovo&display=swap" rel="stylesheet" />
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
<!-- Custom styles for slow spin + font -->
<style>
/* Add custom font */
body {
font-family: 'Outfit', sans-serif;
}
h2, h4, p {
font-family: 'Ovo', serif;
}
/* Define custom animation */
@keyframes bounce-in {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-15px);
}
60% {
transform: translateY(-7px);
}
}
.fade-in-bounce {
animation: fadeIn 1.5s ease forwards, bounce-in 2s ease infinite;
opacity: 0;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
/* Define custom animation */
@keyframes spin-slow {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Tailwind-like class for custom animation */
.animate-spin-slow {
animation: spin-slow 6s linear infinite;
}
/* Custom colors */
.bg-lightHover { background-color: #fcf4ff; }
.bg-darkHover { background-color: #2a004a; }
/* Custom box shadows */
.shadow-black { box-shadow: 4px 4px 0 #000; }
.shadow-white { box-shadow: 4px 4px 0 #fff; }
</style>
<script>
tailwind.config = {
darkMode: 'class'
}
</script>
</head>
<body class="overflow-x-hidden font-Outfit leading-7
dark:bg-[#11001F] dark:text-white">
<div class="fixed top-0 right-0 w-11/12 -z-10 translate-y-[-80%]">
<img src="./images/header-bg-color.png" alt=""
class="w-full dark:hidden">
</div>
<nav class="w-full fixed top-0 px-5 lg:px-8 xl:px-[8%] py-4
flex items-center justify-between z-50 bg-white/30
backdrop-blur-md shadow-sm dark:bg-[#11001F]">
<h1 class="text-3xl font-extrabold tracking-wide
text-transparent bg-clip-text
bg-gradient-to-r from-purple-500 via-pink-500 to-red-500
dark:from-purple-300 dark:via-pink-300 dark:to-red-300
cursor-pointer mr-14">
estif
</h1>
<ul class="hidden md:flex items-center gap-6 lg:gap-8
rounded-full px-12 py-3 bg-white backdrop-blur-md shadow-sm
text-gray-800 font-Ovo dark:border dark:border-white/50 dark:bg-transparent dark:text-white">
<li><a href="#top" class="hover:text-blue-600 transition">Home</a></li>
<li><a href="#about" class="hover:text-blue-600 transition">About Me</a></li>
<li><a href="#services" class="hover:text-blue-600 transition">Services</a></li>
<li><a href="#work" class="hover:text-blue-600 transition">My Work</a></li>
<li><a href="#contact" class="hover:text-blue-600 transition">Contact Me</a></li>
</ul>
<div class="flex items-center gap-4">
<button id="toggleTheme" onclick="toggleTheme()"
class="p-2 bg-gray-200 dark:bg-gray-700 dark:text-yellow-400 ml-4">
<img src="./images/moon_icon.png" alt="" class="w-6 dark:hidden">
<img src="./images/sun_icon.png" alt="" class="w-6 hidden dark:block">
</button>
<a href="#contact"
class="hidden lg:flex items-center gap-3 px-10 py-2.5
border border-gray-500 rounded-full ml-4 font-Ovo
dark:border-white/50">
Contact
<img src="./images/arrow-icon.png" alt="" class="w-3 dark:hidden">
<img src="./images/arrow-icon-dark.png" alt="" class="w-3 hidden
dark:block">
</a>
<button class="block md:hidden ml-3 w-9 cursor-pointer"
onclick="openMenu()">
<img src="./images/menu-black.png" alt="" class="w-6 dark:hidden">
<img src="./images/menu-white.png" alt="" class="w-6 hidden dark:block">
</button>
</div>
<!-- ---- mobile menu -------- -->
<ul id="sideMenu" class="flex md:hidden flex-col gap-4 py-20 px-10 fixed
-right-64 top-0 bottom-0 w-64 z-50 h-screen bg-rose-50
transition duration-500 font-Ovo dark:bg-[#2a004a] dark:text-white">
<div class="absolute right-6 top-6" onclick="closeMenu()">
<img src="./images/close-black.png" alt=""
class="w-5 cursor-pointer dark:hidden">
<img src="./images/close-white.png" alt=""
class="w-5 cursor-pointer hidden dark:block">
</div>
<li><a href="#top" onclick="closeMenu()">Home</a></li>
<li><a href="#about" onclick="closeMenu()">About Me</a></li>
<li><a href="#services" onclick="closeMenu()">Services</a></li>
<li><a href="#work" onclick="closeMenu()">My Work</a></li>
<li><a href="#contact" onclick="closeMenu()">Contact Me</a></li>
</ul>
</nav>
<!-- ------ header ------------ -->
<div class="w-11/12 max-w-3xl text-center mx-auto h-screen
flex flex-col items-center justify-center gap-4 scroll-mt-40">
<img src="./images/profile-img.jpg" alt=""
class="rounded-full w-32">
<h3 class="flex items-end text-xl md:text-2xl mb-3 font-Ovo fade-in-bounce">
Hi! I'm Estif Admasu <img src="./images/hand-icon.png" alt=""
class="w-6"></h3>
<h1 class="text-3xl sm:text-6xl lg:text-[66px] font-Ovo">frontend web developer</h1>
<p class="max-w-2xl mx-auto font-Ovo">
I'm a passionate front-end developer focused on creating responsive, user-friendly websites.
With a strong foundation in HTML, CSS, and JavaScript, I build digital experiences that are both beautiful and functional.
Whether it's a personal brand or a business site, I bring ideas to life on the web.
</p>
<div class="flex flex-col sm:flex-row items-center gap-4 mt-4">
<a href="#contact"
class="px-10 py-3 border border-gray-700 rounded-full
bg-gradient-to-r from-gray-900 to-gray-700
text-white font-semibold flex items-center gap-2
hover:bg-gray-800 hover:scale-105 transition
duration-300 dark:border-transparent">
Contact Me
<img src="./images/right-arrow-white.png" alt=""
class="w-4">
</a>
<a href="# images/files/Estif_Admasu_Resume.pdf" download
class="px-10 py-3 border border-gray-700 rounded-full
font-semibold bg-white flex items-center gap-2 dark:text-black">
my resume
<img src="./images/download-icon.png" alt=""
class="w-4">
</a>
</div>
</div>
<!-- -------- about me----------------- -->
<div id="about" class="w-full px-[12%] py-10 scroll-mt-40">
<h4 class="text-center text-lg font-Ovo">Introduction</h4>
<h2 class="text-center text-5xl font-Ovo">About Me</h2>
<div class="flex flex-col lg:flex-row items-center gap-20 my-20">
<div class="max-w-max mx-auto relative">
<img src="./images/about.png" alt=""
class="w-32 sm:w-80 rounded-3xl max-w-none">
<div class="bg-white w-1/2 aspect-square absolute right-0
bottom-0 rounded-full translate-x-1/4 translate-y-1/3 shadow-[0_4px_55px_rgba
(149,0,162,0.15)] flex items-center justify-center">
<img src="./images/circular-text.png" alt="" class="w-full
animate-spin-slow">
<img src="./images/dev-icon.png" alt="" class="w-1/4 absolute
top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
</div>
</div>
<div class="flex-1">
<p class="text-base leading-relaxed text-gray-700
max-w-2xl mb-10 font-Ovo dark:text-white/80">
I'm Estif Admasu, a passionate front-end developer dedicated
to crafting responsive and user-friendly websites.
I specialize in building modern web experiences using
HTML, CSS, JavaScript, and Tailwind CSS. Let's build
something amazing together!
</p>
<ul class="grid grid-col-1 sm:grid-cols-3 gap-6 max-w-2xl">
<li class="border-[0.5px] border-gray-400 rounded-xl p-6 cursor-pointer
hover:bg-[#fcf4ff] hover:-translate-y-1 duration-500
hover:shadow-[4px_4px_0_#000]
dark:border-white dark:hover:bg-[#2a004a]/50 dark:hover:shadow-white">
<img src="./images/code-icon.png" alt=""
class="w-7 mt-3 dark:hidden">
<img src="./images/code-icon-dark.png" alt=""
class="w-7 mt-3 hidden dark:block">
<h3 class="my-4 font-semibold text-gray-700
dark:text-white">Languages</h3>
<p class="text-gray-600 text-sm
dark:text-white/80">HTML, CSS, JavaScript, Tailwind CSS</p>
</li>
<li class="border-[0.5px] border-gray-400 rounded-xl p-6 cursor-pointer
hover:bg-[#fcf4ff] hover:-translate-y-1 duration-500
hover:shadow-[4px_4px_0_#000]
dark:border-white dark:hover:bg-[#2a004a]/50 dark:hover:shadow-white">
<img src="./images/edu-icon.png" alt=""
class="w-7 mt-3 dark:hidden">
<img src="./images/edu-icon-dark.png" alt=""
class="w-7 mt-3 hidden dark:block">
<h3 class="my-4 font-semibold text-gray-700
dark:text-white">Education</h3>
<p class="text-gray-600 text-sm
dark:text-white/80">Self-taught Frontend Developer</p>
</li>
<li class="border-[0.5px] border-gray-400 rounded-xl p-6 cursor-pointer
hover:bg-[#fcf4ff] hover:-translate-y-1 duration-500
hover:shadow-[4px_4px_0_#000]
dark:border-white dark:hover:bg-[#2a004a]/50 dark:hover:shadow-white">
<img src="./images/project-icon.png" alt=""
class="w-7 mt-3 dark:hidden">
<img src="./images/project-icon-dark.png" alt=""
class="w-7 mt-3 hidden dark:block">
<h3 class="my-4 font-semibold text-gray-700
dark:text-white">Project</h3>
<p class="text-gray-600 text-sm
dark:text-white/80">Built more than 5 projects</p>
</li>
</ul>
<h4 class="my-6 text-gray-700 font-Ovo
dark:text-white/80">Tools I use</h4>
<ul class="flex items-center gap-3 sm:gap-5">
<li class="flex items-center justify-center w-12 sm:w-14
aspect-square border border-gray-400 rounded-lg cursor-pointer
hover:-translate-y-1 duration-500">
<img src="./images/vscode.png" alt="" class="w-5 sm:w-7">
</li>
<li class="flex items-center justify-center w-12 sm:w-14
aspect-square border border-gray-400 rounded-lg cursor-pointer
hover:-translate-y-1 duration-500">
<img src="./images/firebase.png" alt="" class="w-5 sm:w-7">
</li>
<li class="flex items-center justify-center w-12 sm:w-14
aspect-square border border-gray-400 rounded-lg cursor-pointer
hover:-translate-y-1 duration-500">
<img src="./images/mongodb.png" alt="" class="w-5 sm:w-7">
</li>
<li class="flex items-center justify-center w-12 sm:w-14
aspect-square border border-gray-400 rounded-lg cursor-pointer
hover:-translate-y-1 duration-500">
<img src="./images/figma.png" alt="" class="w-5 sm:w-7">
</li>
<li class="flex items-center justify-center w-12 sm:w-14
aspect-square border border-gray-400 rounded-lg cursor-pointer
hover:-translate-y-1 duration-500">
<img src="./images/git.png" alt="" class="w-5 sm:w-7">
</li>
</ul>
</div>
</div>
</div>
<!-- --------- Services -------------- -->
<div id="services" class="w-full max-w-[1400px] mx-auto px-[6%] py-10 scroll-mt-40 min-h-screen">
<h4 class="text-center mb-1 text-lg font-Ovo">What I Offer</h4>
<h2 class="text-center text-5xl font-Ovo">My services</h2>
<p class="text-center max-w-2xl mx-auto mt-5 mb-12 font-Ovo">
I provide professional and responsive web design services tailored to your needs.
From clean landing pages to full portfolio or business websites, I create fast,
modern, and mobile-friendly solutions that help you stand out online.
</p>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 my-10">
<div class="border border-gray-400 rounded-lg px-8 py-12
hover:shadow-[4px_4px_0_#000] cursor-pointer hover:bg-[#fcf4ff]
hover:-translate-y-1 duration-500 w-full max-w-sm mx-auto
dark:hover:bg-[#2a004a] dark:hover:shadow-white">
<img src="./images/web-icon.png" alt="" class="w-10">
<h3 class="text-lg my-4 text-gray-700 dark:text-white">Web design</h3>
<p class="text-sm text-gray-600 leading-5 dark:text-white/80">I design and build clean, modern, and fully responsive websites using HTML, CSS, JavaScript, and Tailwind CSS
to give users a smooth and engaging experience.</p>
<a href="#" class="flex items-center text-sm">Read more
<img src="./images/right-arrow.png" alt="" class="w-4">
</a>
</div>
<div class="border border-gray-400 rounded-lg px-8 py-12
hover:shadow-[4px_4px_0_#000] cursor-pointer hover:bg-[#fcf4ff]
hover:-translate-y-1 duration-500 w-full max-w-sm mx-auto
dark:hover:bg-[#2a004a] dark:hover:shadow-white">
<img src="./images/mobile-icon.png" alt="" class="w-10">
<h3 class="text-lg my-4 text-gray-700 dark:text-white">Mobile app</h3>
<p class="text-sm text-gray-600 leading-5 dark:text-white/80"> I create mobile-friendly web apps that work seamlessly across all devices, ensuring users have the same smooth experience
on phones, tablets, and desktops.</p>
<a href="#" class="flex items-center text-sm">Read more
<img src="./images/right-arrow.png" alt="" class="w-4">
</a>
</div>
<div class="border border-gray-400 rounded-lg px-8 py-12
hover:shadow-[4px_4px_0_#000] cursor-pointer hover:bg-[#fcf4ff]
hover:-translate-y-1 duration-500 w-full max-w-sm mx-auto
dark:hover:bg-[#2a004a] dark:hover:shadow-white">
<img src="./images/ui-icon.png" alt="" class="w-10">
<h3 class="text-lg my-4 text-gray-700 dark:text-white">UI/ UX design</h3>
<p class="text-sm text-gray-600 leading-5 dark:text-white/80"> I focus on creating intuitive and visually appealing user interfaces, making sure every design choice
improves usability and user satisfaction.</p>
<a href="#" class="flex items-center text-sm">Read more
<img src="./images/right-arrow.png" alt="" class="w-4">
</a>
</div>
<div class="border border-gray-400 rounded-lg px-8 py-12
hover:shadow-[4px_4px_0_#000] cursor-pointer hover:bg-[#fcf4ff]
hover:-translate-y-1 duration-500 w-full max-w-sm mx-auto
dark:hover:bg-[#2a004a] dark:hover:shadow-white">
<img src="./images/graphics-icon.png" alt="" class="w-10">
<h3 class="text-lg my-4 text-gray-700 dark:text-white">Graphic design</h3>
<p class="text-sm text-gray-600 leading-5 dark:text-white/80">I design eye-catching graphics and visual elements that match brand identity, helping businesses
stand out online and attract their audience.</p>
<a href="#" class="flex items-center text-sm">Read more
<img src="./images/right-arrow.png" alt="" class="w-4">
</a>
</div>
</div>
</div>
<!-- --------- My Work Section -------------- -->
<div id="work" class="w-full px-[12%] py-10 scroll-mt-40 mt-20">
<h4 class="text-center mb-1 text-lg font-Ovo">My Portfolio</h4>
<h2 class="text-center text-5xl font-Ovo">My Latest Work</h2>
<p class="text-center max-w-2xl mx-auto mt-5 mb-12 font-Ovo">
Every project I create combines modern design, high performance, and a personal touch.
From sleek portfolio sites to functional apps, I focus on delivering responsive, user-friendly,
and visually stunning solutions that help brands stand out and connect with their audience.
</p>
<!-- Grid for Work Items -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 my-10 dark:text-black">
<!-- Project 1 -->
<div class="aspect-square bg-[url('./images/front_pro.png')] bg-no-repeat bg-cover
bg-center rounded-lg relative cursor-pointer group w-full max-w-sm mx-auto shadow-lg hover:shadow-2xl transition-all duration-500">
<div class="bg-white w-10/12 rounded-md absolute bottom-5 left-1/2 -translate-x-1/2 py-3 px-5 flex items-center justify-between
duration-500 group-hover:bottom-7">
<div>
<h2 class="font-semibold">Personal Portfolio</h2>
<p class="text-sm text-gray-700">HTML, CSS, JS, Tailwind</p>
</div>
<div class="border rounded-full border-black w-9 aspect-square flex items-center justify-center shadow-[2px_2px_0_#000]
group-hover:bg-lime-300 transition duration-500">
<img src="./images/send-icon.png" alt="" class="w-5">
</div>
</div>
</div>
<!-- Project 2 -->
<div class="aspect-square bg-[url('./images/landing.png')] bg-no-repeat bg-cover
bg-center rounded-lg relative cursor-pointer group w-full max-w-sm mx-auto shadow-lg hover:shadow-2xl transition-all duration-500">
<div class="bg-white w-10/12 rounded-md absolute bottom-5 left-1/2 -translate-x-1/2 py-3 px-5 flex items-center justify-between
duration-500 group-hover:bottom-7">
<div>
<h2 class="font-semibold">Responsive Landing Page</h2>
<p class="text-sm text-gray-700">Modern UI Design</p>
</div>
<div class="border rounded-full border-black w-9 aspect-square flex items-center justify-center shadow-[2px_2px_0_#000]
group-hover:bg-lime-300 transition duration-500">
<img src="./images/send-icon.png" alt="" class="w-5">
</div>
</div>
</div>
<!-- Project 3 -->
<div class="aspect-square bg-[url('./images/photography.png')] bg-no-repeat bg-cover
bg-center rounded-lg relative cursor-pointer group w-full max-w-sm mx-auto shadow-lg hover:shadow-2xl transition-all duration-500">
<div class="bg-white w-10/12 rounded-md absolute bottom-5 left-1/2 -translate-x-1/2 py-3 px-5 flex items-center justify-between
duration-500 group-hover:bottom-7">
<div>
<h2 class="font-semibold">Photography Portfolio</h2>
<p class="text-sm text-gray-700">Web Design</p>
</div>
<div class="border rounded-full border-black w-9 aspect-square flex items-center justify-center shadow-[2px_2px_0_#000]
group-hover:bg-lime-300 transition duration-500">
<img src="./images/send-icon.png" alt="" class="w-5">
</div>
</div>
</div>
<!-- Project 4 -->
<div class="aspect-square bg-[url('./images/UI.png')] bg-no-repeat bg-cover
bg-center rounded-lg relative cursor-pointer group w-full max-w-sm mx-auto shadow-lg hover:shadow-2xl transition-all duration-500">
<div class="bg-white w-10/12 rounded-md absolute bottom-5 left-1/2 -translate-x-1/2 py-3 px-5 flex items-center justify-between
duration-500 group-hover:bottom-7">
<div>
<h2 class="font-semibold">UI/UX Design</h2>
<p class="text-sm text-gray-700">Prototyping & Wireframing</p>
</div>
<div class="border rounded-full border-black w-9 aspect-square flex items-center justify-center shadow-[2px_2px_0_#000]
group-hover:bg-lime-300 transition duration-500">
<img src="./images/send-icon.png" alt="" class="w-5">
</div>
</div>
</div>
</div>
<!-- Show More Button -->
<a href="#projects" class="w-max flex items-center justify-center gap-2 text-gray-700 border-[0.5px] border-gray-700
py-3 px-10 mx-auto my-20 rounded-full hover:bg-[#fcf4ff] duration-500 dark:text-white dark:border-white dark:hover:bg-[#2a004a]">
Show more
<img src="./images/right-arrow-bold.png" alt="" class="w-4 dark:hidden">
<img src="./images/right-arrow-bold-dark.png" alt="" class="w-4 hidden dark:block">
</a>
</div>
<!-- --------- contact -------------- -->
<div id="contact" class="w-full px-[12%] py-10 scroll-mt-40 h-screen
bg-[url('./images/footer-bg-color.png')] bg-no-repeat
bg-[length:90%_auto] bg-center
dark:bg-none">
<h4 class="text-center mb-1 text-lg font-Ovo">Connect with me</h4>
<h2 class="text-center text-5xl font-Ovo">Get in touch</h2>
<p class="text-center max-w-2xl mx-auto mt-5 mb-12 font-Ovo">
I’m always open to discussing new projects, creative ideas,
or opportunities to be part of your vision. Whether you have a question or just want
to say hi, feel free to reach out — I’d love to hear from you!
</p>
<form action="https://api.web3forms.com/submit" method="POST" class="max-w-2xl mx-auto">
<!-- Your Web3Forms Access Key -->
<input type="hidden" name="access_key" value="786a77cc-318c-4d22-8cb5-e9947a8369d8">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6 mt-10 mb-8">
<input type="text" name="name" placeholder="Enter your name" required
class="flex-1 p-3 outline-none border-[0.5px] border-gray-400 rounded-md bg-white
dark:bg-[#2a004a]/30 dark:border-white/90">
<input type="email" name="email" placeholder="Enter your email" required
class="flex-1 p-3 outline-none border-[0.5px] border-gray-400 rounded-md bg-white
dark:bg-[#2a004a]/30 dark:border-white/90">
</div>
<textarea name="message" rows="6" placeholder="Type your message..." required
class="w-full p-3 outline-none border-[0.5px] border-gray-400 rounded-md bg-white mb-6
placeholder-gray-500 text-black bg-white/30 dark:bg-[#2a004a]/30 dark:border-white/90
dark:text-white dark:placeholder-gray-300"></textarea>
<button type="submit"
class="py-3 px-8 w-max flex items-center justify-between gap-2 bg-black/80 text-white rounded-full mx-auto
hover:bg-black duration-500 dark:bg-transparent dark:border-[0.5px] dark:hover:bg-[#2a004a] dark:border-white/50">
Submit now
<img src="./images/right-arrow-white.png" alt="" class="w-4">
</button>
</form>
</div>
<!-- ---------- footer -------------- -->
<div class="mt-20">
<div class="text-center">
<h1 class="text-3xl font-extrabold tracking-wider
bg-gradient-to-r from-blue-400 via-blue-500
to-blue-600 text-transparent bg-clip-text mb-10">
estif.
</h1>
<div class="w-max flex items-center gap-2 mx-auto">
<img src="./images/mail_icon.png" alt="" class="w-6 dark:hidden">
<img src="./images/mail_icon_dark.png" alt="" class="w-6 hidden dark:block">
Estifdev2@gmail.com
</div>
</div>
<div class="text-center sm:flex items-center justify-between border-t
border-gray-400 mx-[10%] mt-12 py-6">
<p class="text-center text-sm text-gray-500">
© 2025 Estif Admasu. All rights reserved.
</p>
<ul class="flex items-center gap-10 justify-center mt-4 sm:mt-0">
<li><a href="https://estifdev.github.io/Estifdev-Portfolio/" target="_blank">GitHub</a></li>
<li><a href="https://linkedin.com/in/estifdev" target="_blank">LinkedIn</a></li>
<li><a href="https://twitter.com/estifdev" target="_blank">Twitter</a></li>
</ul>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>