-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
706 lines (686 loc) · 42.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
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
<!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">
<script src="https://cdn.tailwindcss.com"></script>
<title>Web Dojo - Web Development Company from the future</title>
</head>
<body>
<section class="navbar">
<nav class=" py-3 px-24">
<div class="container mx-auto flex items-center justify-between">
<a href="#" class="text-orange-600 font-bold text-2xl">Web<span class="text-black">DOJO</span></a>
<div class="flex">
<a href="#" class="text-black font-semibold hover:text-orange-600 mr-4">Home</a>
<a href="#" class="text-black font-semibold hover:text-orange-600 mr-4">About</a>
<a href="#" class="text-black font-semibold hover:text-orange-600">Contact</a>
</div>
</div>
</nav>
</section>
<section class="hero-container">
<div class=" grid lg:grid-cols-2 mx-auto gap-4 px-24 pt-6">
<div class="col-span-1">
<h1 class="text-5xl font-semibold">
<span>
I am a <span class="text-orange-600">Full-stack developer</span> specializing in modern <span
class="text-orange-600">web technologies</span>
</span>
</h1>
<p class="pt-4">
We are a team of talented designers, developers, and strategists who are passionate about creating
beautiful and effective websites that help our clients stand out online.
</p>
<div class="lg:flex jusify-center ">
<button class="w-1/5 mt-8 bg-orange-500 text-white font-bold py-2 px-4 rounded">
Hire Me!
</button>
<button class="w-2/5 mt-8 text-orange-600 font-bold py-2 px-4 rounded">
Download Resume
</button>
</div>
</div>
<div class="col-span-1 ">
<img class="" src="Style/img/dev-removebg-preview.png" alt="">
</div>
</div>
</section>
<section class="stats">
<div class="px-24 mx-auto sm:max-w-xl md:max-w-full lg:max-w-screen-xl md:px-24 lg:px-8 lg:py-20">
<div class="max-w-xl mb-10 md:mx-auto sm:text-center lg:max-w-2xl md:mb-12">
<h2
class="max-w-lg mb-6 font-sans text-3xl font-bold leading-none tracking-tight text-orange-600 sm:text-4xl md:mx-auto">
<span class="relative inline-block">
<svg viewBox="0 0 52 24" fill="currentColor"
class="absolute top-0 left-0 z-0 hidden w-32 -mt-8 -ml-20 text-black lg:w-32 lg:-ml-28 lg:-mt-10 sm:block">
<defs>
<pattern id="d5589eeb-3fca-4f01-ac3e-983224745704" x="0" y="0" width=".135"
height=".30">
<circle cx="1" cy="1" r=".7"></circle>
</pattern>
</defs>
<rect fill="url(#d5589eeb-3fca-4f01-ac3e-983224745704)" width="52" height="24"></rect>
</svg>
<span class="relative text-black">The quick, brown fox</span>
</span>
jumps over a lazy dog
</h2>
<!-- <p class="text-base text-gray-700 md:text-lg">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque rem aperiam,
eaque ipsa quae.
</p> -->
</div>
<div
class="relative w-full p-px mx-auto mb-4 overflow-hidden transition-shadow duration-300 border rounded lg:mb-8 lg:max-w-4xl group hover:shadow-xl">
<div
class="absolute bottom-0 left-0 w-full h-1 duration-300 origin-left transform scale-x-0 bg-deep-purple-accent-400 group-hover:scale-x-100">
</div>
<div
class="absolute bottom-0 left-0 w-1 h-full duration-300 origin-bottom transform scale-y-0 bg-deep-purple-accent-400 group-hover:scale-y-100">
</div>
<div
class="absolute top-0 left-0 w-full h-1 duration-300 origin-right transform scale-x-0 bg-deep-purple-accent-400 group-hover:scale-x-100">
</div>
<div
class="absolute bottom-0 right-0 w-1 h-full duration-300 origin-top transform scale-y-0 bg-deep-purple-accent-400 group-hover:scale-y-100">
</div>
<div
class="relative flex flex-col items-center h-full duration-300 bg-white rounded-sm transition-color sm:items-stretch sm:flex-row">
<div class="px-12 py-8 text-center">
<h6 class="text-4xl font-bold text-orange-600 sm:text-5xl">
200+ <br><span class="text-xl text-black">Project Completed</span>
</h6>
<p class="text-center md:text-base">
Lorem ipsum dolor adipiscing sit amet, consectetur elit.
</p>
</div>
<div
class="w-56 h-1 transition duration-300 transform bg-gray-300 rounded-full group-hover:bg-deep-purple-accent-400 group-hover:scale-110 sm:h-auto sm:w-1">
</div>
<div class="px-12 py-8 text-center">
<h6 class="text-4xl font-bold text-orange-600 sm:text-5xl">
100+ <br><span class="text-xl text-black">Satisfied Clients</span>
</h6>
<p class="text-center md:text-base">
Lorem ipsum elit consectetur sit amet, adipiscing dolor.
</p>
</div>
<div
class="w-56 h-1 transition duration-300 transform bg-gray-300 rounded-full group-hover:bg-deep-purple-accent-400 group-hover:scale-110 sm:h-auto sm:w-1">
</div>
<div class="px-12 py-8 text-center">
<h6 class="text-4xl font-bold text-orange-600 sm:text-5xl">
97% <br><span class="text-xl text-black ">Positive Review</span>
</h6>
<p class="text-center md:text-base">
Lorem ipsum elit consectetur sit amet, adipiscing dolor.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="skills">
<div class="grid lg:grid-cols-2 gap-4 px-24 flex items-center">
<div class="col-span-1">
<h2 class="text-sm font-semibold text-gray-800">My Skills</h2>
<h2 class="text-4xl font-bold pt-4">Why Hire me <span class="text-orange-600">for your next
projects?</span>
</h2>
<p class="pt-4">I’m specialist in Web Design & Development. My passion is designing & building
outstanding websites
for my clients.</p>
<button class="w-1/5 mt-8 bg-orange-500 text-white font-bold py-2 lg:px-4 rounded">
Hire Me
</button>
</div>
<div class="grid gap-5 row-gap-5 sm:grid-cols-2 flex items-center">
<div>
<div class="max-w-md">
<div class="flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-indigo-50">
<svg class="w-12 h-12 text-orange-600" stroke="currentColor" viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
<h6 class="mb-2 font-semibold leading-5">The deep ocean</h6>
<p class="text-sm text-gray-700">
A flower in my garden, a mystery in my panties. Heart attack never stopped old Big Bear. I
didn't even know we were calling him Big Bear.
</p>
</div>
<div class="max-w-md pt-4">
<div class="flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-indigo-50">
<svg class="w-12 h-12 text-orange-600" stroke="currentColor" viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
<h6 class="mb-2 font-semibold leading-5">When has justice</h6>
<p class="text-sm text-gray-700">
Rough pomfret lemon shark plownose chimaera southern sandfish kokanee northern sea robin
Antarctic cod. Yellow-and-black triplefin.
</p>
</div>
</div>
<div>
<div class="max-w-md">
<div class="flex items-center justify-center w-16 h-16 mb-4 rounded-full bg-indigo-50">
<svg class="w-12 h-12 text-orange-600" stroke="currentColor" viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
<h6 class="mb-2 font-semibold leading-5">Organically grow</h6>
<p class="text-sm text-gray-700">
A slice of heaven. O for awesome, this chocka full cuzzie is as rip-off as a cracker.
Meanwhile,
in behind the bicycle shed, Hercules.
</p>
</div>
</div>
</div>
</div>
</section>
<section class="portfolio">
<div class="grid lg:grid-cols-3 gap-4 px-24 pt-32 m-6 pb-24 flex items-center">
<div class="col-span-1 bg-blue">
<h2 class="text-sm font-semibold text-gray-800">My Skills</h2>
<h2 class="text-4xl font-bold pt-4">My Development works & <span class="text-orange-600">latest
projects.</span>
</h2>
<p class="pt-4">I’m specialist in Web Design & Development. My passion is designing & building
outstanding websites
for my clients.</p>
<button class=" mt-8 bg-orange-500 text-white font-semibold py-2 px-4 rounded">
Hire Me
</button>
</div>
<div class=" col-span-1 bg-blue">
<img class="p-4" src="style/img/p1.avif" alt="">
<img class="p-4" src="style/img/p2.avif" alt="">
</div>
<div class="col-span-1 bg-blue">
<img class="p-4" src="style/img/p3.avif" alt="">
<img class="p-4" src="style/img/p4.avif" alt="">
</div>
</div>
</section>
<!-- dev steps here -->
<section class="dev-steps">
<div class="px-4 py-16 mx-auto sm:max-w-xl md:max-w-full lg:max-w-screen-xl md:px-24 lg:px-8 lg:py-20">
<div class="max-w-xl mb-10 md:mx-auto sm:text-center lg:max-w-2xl md:mb-12">
<h2
class="max-w-lg mb-6 font-sans text-3xl font-bold leading-none tracking-tight text-gray-900 sm:text-4xl md:mx-auto">
<span class="relative inline-block">
<svg viewBox="0 0 52 24" fill="currentColor"
class="absolute top-0 left-0 z-0 hidden w-32 -mt-8 -ml-20 text-blue-gray-100 lg:w-32 lg:-ml-28 lg:-mt-10 sm:block">
<defs>
<pattern id="07690130-d013-42bc-83f4-90de7ac68f76" x="0" y="0" width=".135"
height=".30">
<circle cx="1" cy="1" r=".7"></circle>
</pattern>
</defs>
<rect fill="url(#07690130-d013-42bc-83f4-90de7ac68f76)" width="52" height="24"></rect>
</svg>
<span class="relative text-orange-600">The outstanding</span>
</span>
Web Development Process
</h2>
<p class="text-base text-gray-700 md:text-lg">
Web development is the process of building and maintaining a website or web application. It involves
a range of tasks, including planning, design, development, testing, and deployment.
</p>
</div>
<div class="grid max-w-screen-lg mx-auto space-y-6 lg:grid-cols-2 lg:space-y-0 lg:divide-x">
<div class="space-y-6 sm:px-16">
<div class="flex flex-col max-w-md sm:flex-row items-center">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Planing</h6>
<p class="text-sm text-gray-900">
Determine the purpose of the website and identify the target audience. Define the goals
and objectives of the site and create a content plan.
</p>
</div>
</div>
<div class="flex flex-col max-w-md sm:flex-row">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Design</h6>
<p class="text-sm text-gray-900">
Create the layout and visual design of the site. This may involve sketching out
wireframes or creating mockups.
</p>
</div>
</div>
<div class="flex flex-col max-w-md sm:flex-row">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Development</h6>
<p class="text-sm text-gray-900">
Implement the website using a programming language such as HTML, CSS, and JavaScript.
</p>
</div>
</div>
</div>
<div class="space-y-6 sm:px-16">
<div class="flex flex-col max-w-md sm:flex-row">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Testing</h6>
<p class="text-sm text-gray-900">
Test the website to ensure that it is functional and bug-free. This may involve testing
on different devices and browsers.
</p>
</div>
</div>
<div class="flex flex-col max-w-md sm:flex-row ">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Deployment</h6>
<p class="text-sm text-gray-900">
Publish the website and make it live for the public to access.
</p>
</div>
</div>
<div class="flex flex-col max-w-md sm:flex-row">
<div class="mb-4 mr-4">
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-indigo-50">
<svg class="w-8 h-8 text-deep-purple-accent-400 sm:w-10 sm:h-10" stroke="currentColor"
viewBox="0 0 52 52">
<polygon stroke-width="3" stroke-linecap="round" stroke-linejoin="round" fill="none"
points="29 13 14 29 25 29 23 39 38 23 27 23"></polygon>
</svg>
</div>
</div>
<div>
<h6 class="mb-3 text-xl text-orange-600 font-bold leading-5">Mainteinence</h6>
<p class="text-sm text-gray-900">
Regularly update and maintain the website to ensure that it remains functional and
relevant.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Blogs starts here -->
<div class="max-w-xl mt-10 md:mx-auto sm:text-center lg:max-w-2xl md:mb-12">
<h2
class="max-w-lg font-sans text-3xl font-bold leading-none tracking-tight text-gray-900 sm:text-4xl md:mx-auto">
<span class="relative inline-block">
<span class="relative text-orange-600">Explore the latest</span>
</span>
blogs and news.
</h2>
</div>
<div class="px-4 mx-20 sm:max-w-xl md:max-w-full lg:max-w-screen-xl md:px-24 lg:px-8 lg:">
<div class="grid gap-5 lg:grid-cols-3 sm:max-w-sm sm:mx-auto lg:max-w-full">
<div class="overflow-hidden transition-shadow duration-300 bg-white rounded">
<a href="/" aria-label="Article"><img src="Style/img/b1.avif" class="object-cover w-full h-64 rounded"
alt="" /></a>
<div class="py-5">
<p class="mb-2 text-xs font-semibold text-gray-600 uppercase">
13 Jul 2020
</p>
<a href="/" aria-label="Article"
class="inline-block mb-3 text-black transition-colors duration-200 hover:text-deep-purple-accent-700">
<p class="text-2xl font-bold leading-5">Diving to the deep</p>
</a>
<p class="mb-4 text-gray-700">
Sed ut perspiciatis unde omnis iste natus error sit sed quia consequuntur magni voluptatem
doloremque.
</p>
<div class="flex space-x-4">
<a href="/" aria-label="Likes"
class="flex items-start text-gray-800 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="6 23 1 23 1 12 6 12" fill="none" stroke-miterlimit="10">
</polyline>
<path
d="M6,12,9,1H9a3,3,0,0,1,3,3v6h7.5a3,3,0,0,1,2.965,3.456l-1.077,7A3,3,0,0,1,18.426,23H6Z"
fill="none" stroke="currentColor" stroke-miterlimit="10"></path>
</svg>
</div>
<p class="font-semibold">7.4K</p>
</a>
<a href="/" aria-label="Comments"
class="flex items-start text-gray-800 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
stroke="currentColor"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="23 5 23 18 19 18 19 22 13 18 12 18" fill="none"
stroke-miterlimit="10"></polyline>
<polygon points="19 2 1 2 1 14 5 14 5 19 12 14 19 14 19 2" fill="none"
stroke="currentColor" stroke-miterlimit="10"></polygon>
</svg>
</div>
<p class="font-semibold">81</p>
</a>
</div>
</div>
</div>
<div class="overflow-hidden transition-shadow duration-300 bg-white rounded">
<a href="/" aria-label="Article"><img src="Style/img/b2.avif" alt=""
class="object-cover w-full h-64 rounded" /></a>
<div class="py-5 ">
<p class="mb-2 text-xs font-semibold text-gray-600 uppercase">
4 Nov 2020
</p>
<a href="/" aria-label="Article"
class="inline-block mb-3 text-black transition-colors duration-200 hover:text-deep-purple-accent-700">
<p class="text-2xl font-bold leading-5">Conquer the World</p>
</a>
<p class="mb-4 text-gray-700">
Sed ut perspiciatis unde omnis iste natus error sit sed quia consequuntur magni voluptatem
doloremque.
</p>
<div class="flex space-x-4">
<a href="/" aria-label="Likes"
class="flex items-start text-gray-800 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="6 23 1 23 1 12 6 12" fill="none" stroke-miterlimit="10">
</polyline>
<path
d="M6,12,9,1H9a3,3,0,0,1,3,3v6h7.5a3,3,0,0,1,2.965,3.456l-1.077,7A3,3,0,0,1,18.426,23H6Z"
fill="none" stroke="currentColor" stroke-miterlimit="10"></path>
</svg>
</div>
<p class="font-semibold">7.4K</p>
</a>
<a href="/" aria-label="Comments"
class="flex items-start text-gray-800 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
stroke="currentColor"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="23 5 23 18 19 18 19 22 13 18 12 18" fill="none"
stroke-miterlimit="10"></polyline>
<polygon points="19 2 1 2 1 14 5 14 5 19 12 14 19 14 19 2" fill="none"
stroke="currentColor" stroke-miterlimit="10"></polygon>
</svg>
</div>
<p class="font-semibold">81</p>
</a>
</div>
</div>
</div>
<div class="overflow-hidden transition-shadow duration-300 bg-white rounded">
<a href="/" aria-label="Article"><img src="Style/img/b3.avif" class="object-cover w-full h-64 rounded"
alt="" /></a>
<div class="py-5">
<p class="mb-2 text-xs font-semibold text-gray-600 uppercase">
28 Dec 2020
</p>
<a href="/" aria-label="Article"
class="inline-block mb-3 text-black transition-colors duration-200 hover:text-deep-purple-accent-700">
<p class="text-2xl font-bold leading-5">Explore the beautiful</p>
</a>
<p class="mb-4 text-gray-700">
Sed ut perspiciatis unde omnis iste natus error sit sed quia consequuntur magni voluptatem
doloremque.
</p>
<div class="flex space-x-4 text-orange-600">
<a href="/" aria-label="Likes"
class="flex items-start text-gray-800 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="6 23 1 23 1 12 6 12" fill="none" stroke-miterlimit="10">
</polyline>
<path
d="M6,12,9,1H9a3,3,0,0,1,3,3v6h7.5a3,3,0,0,1,2.965,3.456l-1.077,7A3,3,0,0,1,18.426,23H6Z"
fill="none" stroke="currentColor" stroke-miterlimit="10"></path>
</svg>
</div>
<p class="font-semibold">7.4K</p>
</a>
<a href="/" aria-label="Comments"
class="flex items-start text-orange-600 transition-colors duration-200 hover:text-deep-purple-accent-700 group">
<div class="mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
stroke="currentColor"
class="w-5 h-5 text-gray-600 transition-colors duration-200 group-hover:text-deep-purple-accent-700">
<polyline points="23 5 23 18 19 18 19 22 13 18 12 18" fill="none"
stroke-miterlimit="10"></polyline>
<polygon points="19 2 1 2 1 14 5 14 5 19 12 14 19 14 19 2" fill="none"
stroke="currentColor" stroke-miterlimit="10"></polygon>
</svg>
</div>
<p class="font-semibold">81</p>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- footer starts here -->
<section>
<div class="relative mt-16 bg-orange-600">
<svg class="absolute top-0 w-full h-6 -mt-5 sm:-mt-10 sm:h-16 text-orange-600" preserveAspectRatio="none"
viewBox="0 0 1440 54">
<path fill="currentColor"
d="M0 22L120 16.7C240 11 480 1.00001 720 0.700012C960 1.00001 1200 11 1320 16.7L1440 22V54H1320C1200 54 960 54 720 54C480 54 240 54 120 54H0V22Z">
</path>
</svg>
<div class="px-4 pt-12 mx-auto sm:max-w-xl md:max-w-full lg:max-w-screen-xl md:px-24 lg:px-8">
<div class="grid gap-16 row-gap-10 mb-8 lg:grid-cols-6">
<div class="md:max-w-md lg:col-span-2">
<a href="/" aria-label="Go home" title="WebDojo" class="inline-flex items-center">
<svg class="w-8 text-teal-accent-400" viewBox="0 0 24 24" stroke-linejoin="round"
stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" stroke="currentColor"
fill="none">
<rect x="3" y="1" width="7" height="12"></rect>
<rect x="3" y="17" width="7" height="6"></rect>
<rect x="14" y="1" width="7" height="6"></rect>
<rect x="14" y="11" width="7" height="12"></rect>
</svg>
<span class="ml-2 text-xl font-bold tracking-wide text-gray-100">Web<span
class="text-black">DOJO</span></span>
</a>
<div class="mt-4 lg:max-w-sm">
<p class="text-sm text-deep-purple-50">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque
laudantium, totam rem aperiam.
</p>
<p class="mt-4 text-sm text-deep-purple-50">
Eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt
explicabo.
</p>
</div>
</div>
<div class="grid grid-cols-2 gap-5 row-gap-8 lg:col-span-4 md:grid-cols-4">
<div>
<p class="font-semibold tracking-wide text-teal-accent-400">
Category
</p>
<ul class="mt-2 space-y-2">
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">News</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">World</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Games</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">References</a>
</li>
</ul>
</div>
<div>
<p class="font-semibold tracking-wide text-teal-accent-400">Cherry</p>
<ul class="mt-2 space-y-2">
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Web</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">eCommerce</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Business</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Entertainment</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Portfolio</a>
</li>
</ul>
</div>
<div>
<p class="font-semibold tracking-wide text-teal-accent-400">Apples</p>
<ul class="mt-2 space-y-2">
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Media</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Brochure</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Nonprofit</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Educational</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Projects</a>
</li>
</ul>
</div>
<div>
<p class="font-semibold tracking-wide text-teal-accent-400">
Business
</p>
<ul class="mt-2 space-y-2">
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Infopreneur</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Personal</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Wiki</a>
</li>
<li>
<a href="/"
class="transition-colors duration-300 text-deep-purple-50 hover:text-teal-accent-400">Forum</a>
</li>
</ul>
</div>
</div>
</div>
<div
class="flex flex-col justify-between pt-5 pb-10 border-t border-deep-purple-accent-200 sm:flex-row">
<p class="text-sm text-gray-100">
© Copyright 2020 WebDOJO Inc. All rights reserved.
</p>
<div class="flex items-center mt-4 space-x-4 sm:mt-0">
<a href="/"
class="transition-colors duration-300 text-deep-purple-100 hover:text-teal-accent-400">
<svg viewBox="0 0 24 24" fill="currentColor" class="h-5">
<path
d="M24,4.6c-0.9,0.4-1.8,0.7-2.8,0.8c1-0.6,1.8-1.6,2.2-2.7c-1,0.6-2,1-3.1,1.2c-0.9-1-2.2-1.6-3.6-1.6 c-2.7,0-4.9,2.2-4.9,4.9c0,0.4,0,0.8,0.1,1.1C7.7,8.1,4.1,6.1,1.7,3.1C1.2,3.9,1,4.7,1,5.6c0,1.7,0.9,3.2,2.2,4.1 C2.4,9.7,1.6,9.5,1,9.1c0,0,0,0,0,0.1c0,2.4,1.7,4.4,3.9,4.8c-0.4,0.1-0.8,0.2-1.3,0.2c-0.3,0-0.6,0-0.9-0.1c0.6,2,2.4,3.4,4.6,3.4 c-1.7,1.3-3.8,2.1-6.1,2.1c-0.4,0-0.8,0-1.2-0.1c2.2,1.4,4.8,2.2,7.5,2.2c9.1,0,14-7.5,14-14c0-0.2,0-0.4,0-0.6 C22.5,6.4,23.3,5.5,24,4.6z">
</path>
</svg>
</a>
<a href="/"
class="transition-colors duration-300 text-deep-purple-100 hover:text-teal-accent-400">
<svg viewBox="0 0 30 30" fill="currentColor" class="h-6">
<circle cx="15" cy="15" r="4"></circle>
<path
d="M19.999,3h-10C6.14,3,3,6.141,3,10.001v10C3,23.86,6.141,27,10.001,27h10C23.86,27,27,23.859,27,19.999v-10 C27,6.14,23.859,3,19.999,3z M15,21c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6S18.309,21,15,21z M22,9c-0.552,0-1-0.448-1-1 c0-0.552,0.448-1,1-1s1,0.448,1,1C23,8.552,22.552,9,22,9z">
</path>
</svg>
</a>
<a href="/"
class="transition-colors duration-300 text-deep-purple-100 hover:text-teal-accent-400">
<svg viewBox="0 0 24 24" fill="currentColor" class="h-5">
<path
d="M22,0H2C0.895,0,0,0.895,0,2v20c0,1.105,0.895,2,2,2h11v-9h-3v-4h3V8.413c0-3.1,1.893-4.788,4.659-4.788 c1.325,0,2.463,0.099,2.795,0.143v3.24l-1.918,0.001c-1.504,0-1.795,0.715-1.795,1.763V11h4.44l-1,4h-3.44v9H22c1.105,0,2-0.895,2-2 V2C24,0.895,23.105,0,22,0z">
</path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
</body>
</html>