-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
467 lines (421 loc) · 34.2 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
<!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>Coder-Mujahid portfolio</title>
<link rel="shortcut icon" href="img/visual-basic_5968389.png" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/daisyui@3.7.7/dist/full.css" rel="stylesheet" type="text/css" />
</head>
<body class="bg-scroll " style="background-image: url(img/bg1.jpg)">
<!-- up button -->
<div class="w-11/12 mx-auto absolute">
<a href="#top"><i class='bx bxs-up-arrow-square text-[30px] sm:text-[60px] text-[#44434391] bottom-1 left-1/2 fixed' ></i></a>
</div>
<!-- header part -->
<header class="bg-scroll bg-no-repeat bg-center border-b-2 border-gray-800" style="background-image: url(img/bg4.jpg)">
<div class=" md:w-11/12 mx-auto flex justify-between items-center gap-4 py-5 px-5 ">
<img class=" w-20 md:w-48" src="img/logo.png" alt="img">
<i id="click" class='bx bx-menu text-5xl font-semibold block md:hidden'></i>
<div class=" hidden md:block">
<ul class="md:flex gap-2 flex-wrap items-center justify-end c p-5 mx-auto" >
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#hero">Home</a></li>
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#about">About</a></li>
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#skill">skill</a></li>
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#project">project</a></li>
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#blogs">blog</a></li>
<li class=" bg-slate-400 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#FAQ">FAQ</a></li>
<li class=" bg-slate-400 px-2 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-slate-200 text-center"><a class="capitalize text-lg font-semibold" href="#contact">contect</a></li>
</ul>
</div>
</div>
</header>
<!-- header part dropdown content -->
<div id="drop" class="hidden items-end">
<ul class="md:flex gap-2 flex-col items-center p-5 mx-auto bg-slate-100 " >
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#hero">Home</a></li>
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#about">About me</a></li>
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#skill">skill</a></li>
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#project">project</a></li>
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#blogs">blog</a></li>
<li class="my-2 bg-slate-300 px-6 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#FAQ">FAQ</a></li>
<li class="my-2 bg-slate-300 px-2 py-2 rounded transition duration-350 ease-outhover:bg-[#7fd5fd] hover:bg-[#89d9fd] text-center"><a class="capitalize text-lg font-semibold" href="#contact">contect</a></li>
</ul>
</div>
<!-- headre part js -->
<script>
const data=document.getElementById('click')
const data1=document.getElementById('drop')
data.onclick=call;
function call(){
data1.classList.toggle('hidden')
}
</script>
<!-- hero section -->
<section id="hero" class="flex items-center justify-center my-20">
<div class="md:flex w-11/12 gap-20 mx-auto justify-between items-center p-5">
<div class="mb-10">
<p class="text-lg pb-2 font-medium text-black capitalize">Hello, Welcome my self</p>
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">md mujahid islam</h2>
<h2 class="text-2xl font-bold capitalize pb-2 text-orange-500">I am frontend developer</h2>
<p class="pb-2 text-sm font-semibold">Hello there! I'm Md Mujahidul islam, a passionate frontend developer with a love for creating stunning and user-friendly web experiences. I believe in the power of well-crafted code to transform ideas into captivating digital realities.</p>
<ul class="flex gap-4 pb-5">
<li><a target="_blank" href="https://www.linkedin.com/"><i class='bx bxl-linkedin-square text-4xl text-blue-700 hover:text-blue-600 '></i></a></li>
<li><a target="_blank" href="https://www.instagram.com/"><i class='bx bxl-instagram-alt text-4xl text-[purple] hover:text-[#e467e4]' ></i></a></li>
<li><a target="_blank" href="https://github.com/"><i class='bx bxl-github text-4xl text-slate-700 hover:text-slate-600' ></i></a></li>
<li><a target="_blank" href="https://www.facebook.com/"><i class='bx bxl-facebook-square text-4xl text-blue-600 hover:text-blue-500' ></i></i></a></li>
</ul>
<button class="btn-ghost w-28 bg-slate-400 pb-2 text-base font-semibold text-black py-2 rounded duration-75 hover:bg-slate-300">contact</button>
</div>
<div class="shadow-2xl shadow-black rounded-full">
<img src="img/Untitled_design__6_-removebg-preview.png" alt="">
</div>
</div>
</section>
<!-- about section -->
<section id="about" class="py-20">
<div class="md:w-6/12 mx-auto text-center my-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">about me</h2>
<p class="pb-2 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<div class="md:flex w-11/12 gap-14 mx-auto justify-between items-center p-5">
<div class=" md:w-full shadow-lg shadow-black rounded mb-6">
<img class="mx-auto " src="img/about.png" alt="img">
</div>
<div class="mb-10">
<p class="text-lg pb-2 font-medium text-lime-500">Hello, Welcome</p>
<p class="pb-2 md:pr-10 text-sm font-semibold">Hello there! I'm md mujahid islam, a passionate frontend developer with a love for creating stunning and user-friendly web experiences. I believe in the power of well-crafted code to transform ideas into captivating digital realities.
What I Bring to the Table
🎨 Design Sensibility: With a background in design, I have a knack for turning creative concepts into visually appealing interfaces. I understand the importance of aesthetics and functionality working hand in hand.</p>
<ul class="md:flex flex-col gap-2 pb-5 pr-5">
<li><a class="flex items-center font-semibold" target="_blank" href="https://www.whatsapp.com/"><i class='bx bxl-whatsapp text-4xl text-blue-700 hover:text-blue-600 '></i>01737705511</a></li>
<li><a class="flex items-center font-semibold" target="_blank" href="https://mail.google.com/"><i class='bx bxs-envelope text-4xl text-blue-700 hover:text-blue-600 '></i>mujahidislam400301@gmail.com</a></li>
<li><a class="flex items-center font-semibold" target="_blank" href="https://maps.app.goo.gl/mdCtkKdepKoPATWS7"><i class='bx bxs-location-plus text-4xl text-blue-700 hover:text-blue-600 '></i>Aftab Nagar, Dacca</a></li>
</ul>
<button href="file:///C:/Users/Mujahidul%20Islam/Downloads/Documents/Profile.pdf" class="btn-ghost w-40 bg-slate-400 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-300">download resume</button>
</div>
</div>
</section>
<!-- skill section -->
<section id="skill" class="pb-10">
<div class="md:w-6/12 mx-auto text-center my-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">my skills</h2>
<p class="pb-2 px-3 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<div class="w-11/12 mx-auto md:grid grid-cols-3 items-center gap-3">
<div class="grid grid-cols-2 gap-2 items-center py-5">
<img class="" src="img/html.png" alt="img">
<div class=" items-center">
<h2 class="text-4xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-orange-600">HTML5</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-orange-600 text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 items-center py-5">
<img class="p-8" src="img/CSS3.png" alt="img">
<div class="w-full">
<h2 class="text-2xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-blue-600">CSS3</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-blue-600 text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 items-center py-5">
<img class="p-5" src="img/Bootstrap .png" alt="img">
<div class="w-full">
<h2 class="text-2xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-sky-600">BootsTrap</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-indigo-600 text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 items-center py-5">
<img class="p-5" src="img/tailwind.png" alt="img">
<div class="w-full">
<h2 class="text-2xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-sky-500">tailwindcss</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-sky-500 text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 items-center py-5">
<img class="p-8" src="img/js.png" alt="img">
<div class="w-full">
<h2 class="text-2xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-yellow-500">Javascript</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-yellow-500 text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
<div class="grid grid-cols-2 items-center py-5">
<img class="" src="img/responsive.png" alt="img">
<div class="w-full">
<h2 class="text-2xl lg:text-4xl md:text-2xl font-bold capitalize pb-2 text-black">Responsive Site</h2>
<p class="text-sm font-medium capitalize pb-2">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Expedita, odio.</p>
<div class="flex w-full h-4 text-black bg-white rounded-full overflow-hidden dark:bg-gray-700">
<div class="flex flex-col justify-center overflow-hidden bg-black text-xs text-white text-center" role="progressbar" style="width: 95%" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100">95%</div>
</div>
</div>
</div>
</div>
</section>
<!-- project section -->
<section id="project" class="pb-10">
<div class="md:w-6/12 mx-auto text-center my-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">my projects</h2>
<p class="pb-2 px-3 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<div class="w-11/12 mx-auto md:grid grid-cols-2 gap-5">
<!-- card 1 -->
<div class="md:flex flex-row items-center gap-2 w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/bike.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">responsive_bike_shop_site!</h2>
<p>Click the button to watch more.</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/Startup_Landing_page/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
<!-- card 2 -->
<div class=" md:flex flex-row items-center w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/staryup.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">Startup_Landing_page!</h2>
<p>Click the button to watch more.</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/Startup_Landing_page/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
<!-- card 3 -->
<div class="md:flex flex-row items-center w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/asus.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">asus-shop_clone!</h2>
<p>Click the button to watch more</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/asus-shop/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
<!-- card 4 -->
<div class="md:flex flex-row items-center w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/mujahid.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">Think_box!</h2>
<p>Click the button to watch more</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/practice_project01/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
<!-- card 5 -->
<div class="md:flex flex-row items-center w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/portfolio_p[.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">Portfolio_project!</h2>
<p>Click the button to watch more</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/Portfolio_final/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
<!-- card 6 -->
<div class="md:flex flex-row items-center w-full bg-slate-300 shadow-2xl shadow-black rounded-xl mb-5">
<img class="w-full md:w-6/12 p-3" src="img/bank.png" alt="Movie"/>
<div class="card-body">
<h2 class="text-xl font-semibold text-black pr-5">bank_counter!</h2>
<p>Click the button to watch more</p>
<div class="card-actions">
<a target="_blank" href="https://coder-mujahid.github.io/bank_counter/"><button class="btn-ghost w-auto px-8 bg-slate-100 text-base font-semibold capitalize text-black py-2 rounded duration-75 hover:bg-slate-400">Show more</button></a>
</div>
</div>
</div>
</div>
</section>
<!-- blog section -->
<section id="blogs" class=" pb-16">
<div class="md:w-6/12 mx-auto text-center py-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">my blogs</h2>
<p class="pb-2 px-3 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<!-- heading part -->
<div class="md:flex gap-8 w-11/12 mx-auto">
<!-- card 1 -->
<div class="bg-scroll scroll-smooth shadow-2xl shadow-black rounded-xl mb-6" style="background-image: url(img/bg4.jpg)">
<div class="flex flex-col justify-between py-20 px-8">
<p class="text-base font-medium text-slate-400 text-center pb-3">CATEGORY</p>
<h2 class="text-center text-3xl font-semibold text-black pb-3">Raclette Blueberry Nextious Level</h2>
<p class="text-sm font-medium text-black text-center pb-3">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing tousled waistcoat.</p>
<button class="my-8"><a class="text-xl font-medium text-black hover:text-slate-700 text- text-cente" target="_blank" href="https://sharesaddaipl.com/blogs.php">Learn More ➢</a></button>
</div>
<div class="flex justify-center gap-2 items-center py-3 ">
<span class="flex items-center text-xl font-semibold"><i class='bx bx-show font-semibold text-black text-xl'></i> 100</span>
<span class="border-r-2 h-6 border-black bg-black"></span>
<span class="flex items-center text-xl font-semibold"><i class='bx bx-comment font-semibold text-black text-xl' ></i> 30</span>
</div>
</div>
<!-- card 2 -->
<div class="bg-scroll scroll-smooth shadow-2xl shadow-black rounded-xl mb-6" style="background-image: url(img/bg4.jpg)">
<div class="flex flex-col justify-between py-20 px-8">
<p class="text-base font-medium text-slate-400 text-center pb-3">CATEGORY</p>
<h2 class="text-center text-3xl font-semibold text-black pb-3">Ennui Snackwave Thundercats</h2>
<p class="text-sm font-medium text-black text-center pb-3">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing tousled waistcoat.</p>
<button class="my-8"><a class="text-xl font-medium text-black hover:text-slate-700 text- text-cente" target="_blank" href="https://thewilddahlia.com/blog">Learn More ➢</a></button>
</div>
<div class="flex justify-center gap-2 items-center py-3 ">
<span class="flex items-center text-xl font-semibold"><i class='bx bx-show font-semibold text-black text-xl'></i> 100</span>
<span class="border-r-2 h-6 border-black bg-black"></span>
<span class="flex items-center text-xl font-semibold"><i class='bx bx-comment font-semibold text-black text-xl' ></i> 30</span>
</div>
</div>
<!-- card 3 -->
<div class="bg-scroll scroll-smooth shadow-2xl shadow-black rounded-xl mb-6" style="background-image: url(img/bg4.jpg)">
<div class="flex flex-col justify-between py-20 px-8">
<p class="text-base font-medium text-slate-400 text-center pb-3">CATEGORY</p>
<h2 class="text-center text-3xl font-semibold text-black pb-3">Selvage Poke Waistcoat Godard</h2>
<p class="text-sm font-medium text-black text-center pb-3">Photo booth fam kinfolk cold-pressed sriracha leggings jianbing microdosing tousled waistcoat.</p>
<button class="my-8"><a class="text-xl font-medium text-black hover:text-slate-700 text- text-cente" target="_blank" href="https://bbpads.com/2018/02/15/a-blog-post/">Learn More ➢</a></button>
</div>
<div class="flex justify-center gap-2 items-center py-3 ">
<span class="flex items-center text-xl font-semibold"><i class='bx bx-show font-semibold text-black text-xl'></i> 100</span>
<span class="border-r-2 h-6 border-black bg-black"></span>
<span class="flex items-center text-xl font-semibold"><i class='bx bx-comment font-semibold text-black text-xl' ></i> 30</span>
</div>
</div>
</div>
</section>
<!-- FAQ section -->
<section id="FAQ" class="pb-16">
<div class="md:w-6/12 mx-auto text-center py-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">FAQ</h2>
<p class="pb-2 px-3 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<!-- heading text -->
<div class="md:flex gap-10 items-center justify-center w-11/12 mx-auto">
<div>
<div class="mockup-phone w-full mb-5">
<div class="camera"></div>
<div class="display">
<div class="artboard artboard-demo phone-1">
<img class="w-full h-full" src="img/TWO.JPG" alt="">
</div>
</div>
</div>
</div>
<div class="bg-slate-600 p-5 rounded-xl">
<div class="collapse collapse-arrow bg-slate-200 py-5 mb-2">
<input type="radio" name="my-accordion-2" checked="checked" />
<div class="collapse-title text-xl font-medium">
What is the difference between HTML, CSS, and JavaScript?
</div>
<div class="collapse-content">
<p>HTML (HyperText Markup Language) is used for structuring the content of web pages.
CSS (Cascading Style Sheets) is used for styling and layout, controlling how HTML elements are presented.
JavaScript is a programming language used for adding interactivity and functionality to </p>
</div>
</div>
<div class="collapse collapse-arrow bg-slate-200 py-5 mb-2">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
What is responsive web design, and why is it important?
</div>
<div class="collapse-content">
<p>Responsive web design is an approach to design and development that ensures a website's layout and content adapt to different screen sizes and devices. It's important because it provides a consistent and user-friendly experience across desktops, tablets, and mobile devices, improving accessibility and user satisfaction.</p>
</div>
</div>
<div class="collapse collapse-arrow bg-slate-200 py-5 mb-2">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
What is the Document Object Model (DOM)?
</div>
<div class="collapse-content">
<p>The DOM is a programming interface for HTML and XML documents. It represents the structure of a document as a tree of objects, where each object represents a part of the document, such as elements and their attributes. JavaScript can be used to manipulate the DOM dynamically, enabling interactions and updates on web pages without requiring a page reload.</p>
</div>
</div>
<div class="collapse collapse-arrow bg-slate-200 py-5 mb-2">
<input type="radio" name="my-accordion-2" />
<div class="collapse-title text-xl font-medium">
What are CSS preprocessors, and why are they used
</div>
<div class="collapse-content">
<p>CSS preprocessors like SASS and LESS are tools that extend the capabilities of CSS. They allow developers to use variables, functions, and nested rules, making CSS code more modular and maintainable. Preprocessors also enable code reusability and easier management of styles in large projects.</p>
</div>
</div>
</div>
</div>
</section>
<!-- contact section -->
<section id="contact" class=" pb-16">
<div class="md:w-6/12 mx-auto text-center py-5">
<h2 class="text-4xl font-bold capitalize pb-2 text-lime-500">contact me</h2>
<p class="pb-2 px-3 text-sm font-semibold">Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis eaque id alias nemo in quod impedit vitae, facere, quis assumenda saepe consequuntur quam architecto eveniet molestias beatae libero? Atque, excepturi?</p>
</div>
<div class="w-11/12 mx-auto">
<section class="text-gray-600 bg-slate-600 body-font relative rounded-xl">
<div class="container px-5 py-24 mx-auto flex sm:flex-nowrap flex-wrap">
<div class="lg:w-2/3 md:w-1/2 bg-gray-300 rounded-lg overflow-hidden sm:mr-10 p-10 flex items-end justify-start relative">
<iframe width="100%" height="100%" class="absolute inset-0" frameborder="0" title="map" marginheight="0" marginwidth="0" scrolling="no" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d986.6524384053055!2d90.43801694577404!3d23.764850102823466!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c78c71227c15%3A0x9f0818437919415d!2sAftab%20Nagar%2C%20Dhaka%2C%20Bangladesh!5e1!3m2!1sen!2sus!4v1696020115605!5m2!1sen!2sus"></iframe>
<div class="bg-white relative md:flex flex-wrap py-6 rounded shadow-md">
<div class="lg:w-1/2 px-2">
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs">ADDRESS</h2>
<p class="mt-1">House: 26, Road: 02, Block: E, Sector: 01, Aftabnagar, Badda, Dhaka-1212</p>
</div>
<div class="lg:w-1/2 px-2 mt-4 lg:mt-0">
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs">EMAIL</h2>
<a class="text-indigo-500 leading-relaxed">mujahidislam400301@gmail.com</a>
<h2 class="title-font font-semibold text-gray-900 tracking-widest text-xs mt-4">PHONE</h2>
<p class="leading-relaxed">01737705511</p>
</div>
</div>
</div>
<div class="lg:w-1/3 md:w-1/2 bg-scroll bg-no-repeat bg-center flex flex-col md:ml-auto w-full md:py-8 mt-8 md:mt-0 p-5 rounded-xl" style="background-image: url(img/bg4.jpg)">
<h2 class="text-gray-900 text-lg mb-1 font-medium title-font">Feedback</h2>
<p class="leading-relaxed mb-5 text-gray-600">Post-ironic portland shabby chic echo park, banjo fashion axe</p>
<div class="relative mb-4">
<label for="name" class="leading-7 text-sm text-gray-600">Name</label>
<input type="text" id="name" name="name" class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<div class="relative mb-4">
<label for="email" class="leading-7 text-sm text-gray-600">Email</label>
<input type="email" id="email" name="email" class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out">
</div>
<div class="relative mb-4">
<label for="message" class="leading-7 text-sm text-gray-600">Message</label>
<textarea id="message" name="message" class="w-full bg-white rounded border border-gray-300 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out"></textarea>
</div>
<button class="text-black bg-slate-200 font-semibold border-0 py-2 px-6 focus:outline-none hover:bg-slate-400 rounded text-lg">Button</button>
<p class="text-xs text-gray-500 mt-3">Chicharrones blog helvetica normcore iceland tousled brook viral artisan.</p>
</div>
</div>
</section>
</div>
</section>
<!-- footer section -->
<footer class="footer p-10 bg-scroll text-neutral-content text-black" style="background-image: url(img/bg5.jpg)">
<aside>
<img src="img/logo.png" alt="img">
<p class=" text-black">Copyright © 2023 - All right reserved by <span class="text-red-600 text-lg font-semibold">Md Mujahid islam</span> </p>
</aside>
<nav>
<header class="footer-title">Social</header>
<div class="grid grid-flow-col gap-4">
<div class="grid grid-flow-col gap-4 md:grid">
<a href="https://twitter.com/?lang=en"><i class='bx bxl-twitter text-4xl text-sky-500'></i></a>
<a href="https://www.youtube.com/"><i class='bx bxl-youtube text-4xl text-red-600' ></i></a>
<a href="https://www.facebook.com/"><i class='bx bxl-facebook-square text-4xl text-blue-900' ></i></a>
</div>
</div>
</nav>
</footer>
</body>
</html>