-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
1251 lines (859 loc) · 55.3 KB
/
main.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
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<!--
-primary meta tags
-->
<title>Bloggit - Hey, Welcome to Bloggit. Explore our stories and ideas.</title>
<meta name="title" content="Bloggit - Hey, Welcome to Bloggit. Explore our stories and ideas.">
<meta name="description" content="This is a blog html template created by Samarth">
<!--
- favicon
-->
<link rel="shortcut icon" href="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\d0c514d2a2c22db84f2f96f90a3f5fb6.svg" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<!--
**Header
-->
<header class="header section" data-header>
<div class="container">
<a href="#" class="logo">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\d0c514d2a2c22db84f2f96f90a3f5fb6.svg" width="250" height="100" alt="Bloggit Logo">
</a>
<div class="container">
<label class="toggle_label">
<input type="checkbox" id="mode" class="toggle">
<span class="slider round">
<i class="fa-solid fa-moon fa-lg fa-spin moon"></i>
<i class="fa-solid fa-sun fa-spin fa-lg sun"></i>
</span>
</label>
</div>
<nav class="navbar" data-navbar>
<ul class="navbar-list">
<li class="navbar-item">
<a href="#" class="navbar-link hover:underline" data-nav-link>Home</a>
</li>
<li class="navbar-item">
<a href="#" class="navbar-link hover:underline" data-nav-link>Recent Post</a>
</li>
<li class="navbar-item">
<a href="#" class="navbar-link hover:underline" data-nav-link>Membership</a>
</li>
</ul>
</nav>
<div class="wrapper">
<button class="search-btn" aria-label="search" data-search-toggler>
<ion-icon name="search-outline" aria-hidden="true"></ion-icon>
<span class="span">search</span>
</button>
<button class="nav-toggle-btn" aria-label="toggle menu" data-nav-toggler>
<span class="span one"></span>
<span class="span two"></span>
<span class="span three"></span>
</button>
<a href="#" class="btn">Join</a>
</div>
</div>
</header>
<!--
**Search Bar
-->
<div class="search-bar" data-search-bar>
<div class="input-wrapper">
<input type="search" name="search" placeholder="search" class="input-field">
<button class="search-close-btn" aria-label="close search bar" data-search-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<p class="search-bar-text">Please enter atleast 2 characters</p>
</div>
<div class="overlay" data-overlay data-search-toggler></div>
<main>
<article>
<!--
*SUPERHERO
-->
<section class="section superhero" aria-label="home">
<div class="container">
<h1 class="h1 superhero-title">
<strong class="strong">Hey, Welcome to Bloggit.</strong>Explore our stories and ideas.
</h1>
<div class="wrapper">
<form action="" class="newsletter-form">
<input type="email" name="email-address" placeholder="Your email address" class="email-field">
<button type="submit" class="btn">Subscribe</button>
</form>
<p class="newsletter-text">
Get the email newsletter and unlock access to members-only content and updates.
</p>
</div>
</div>
</section>
<!--
**Featured Post
-->
<section class="section featured" aria-label="featured post">
<div class="container">
<p class="section-subtitle">
Get started with our <strong class="strong">best stories</strong>
</p>
<ul class="has-scrollbar">
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 700">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 1-_1.jpg" width="600" height="700" loading="lazy" alt="New technology is not good or evil for and of itself" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height:150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 1.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Design</a>
</li>
<li>
<a href="#" class="card-tag">Idea</a>
</li>
<li>
<a href="#" class="card-tag">Review</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Exploring the Ethical Implications of AI in Healthcare
</a>
</h3>
<p class="card-text">
Delve into the ethical considerations surrounding AI's integration in healthcare, weighing the benefits of innovation against the critical aspects of patient privacy and safety.
</p>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 700;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 2_1.jpg" height="700" width="600" loading="lazy" alt="It's a new era, there are no rules" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height:150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Creative</a>
</li>
<li>
<a href="#" class="card-tag">Product</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">It's a new era, there are no rules</a>
</h3>
<p class="card-text">
Delve into the ethical considerations surrounding AI's integration in healthcare, weighing the benefits of innovation against the critical aspects of patient privacy and safety.
</p>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 700;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 3.jpg" width="600" height="700" loading="lazy" alt="Perfection is related to the final outcome or result." class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height:150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Design</a>
</li>
<li>
<a href="#" class="card-tag">Creative</a>
</li>
<li>
<a href="#" class="card-tag">Idea</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">Perfection is related to the final outcome or result.</a>
</h3>
<p class="card-text">
Perfection is an ideal or state characterized by flawlessness, precision, and excellence. It represents the highest standard or quality achievable in a particular context, often pursued but seldom fully attained due to the subjective nature of human judgment and the inherent imperfections of reality. Despite its elusive nature, the pursuit of perfection serves as a driving force for improvement, innovation, and the continual refinement of skills and creations across various domains.
</p>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 700;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 4.jpg" width="600" height="700" loading="lazy" alt="Everyone has a different life story" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 4.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 5.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">People</a>
</li>
<li>
<a href="#" class="card-tag">Story</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Each person possesses a unique narrative to their life.
</a>
</h3>
<p class="card-text">
This statement emphasizes the individuality and distinct experiences that shape every person's life. It acknowledges that each individual carries a personal story composed of their own encounters, choices, challenges, and triumphs, making their journey through life entirely their own. It highlights the diversity of human experiences, perspectives, and circumstances that contribute to the richness and complexity of each person's life story.
</p>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height: 700;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 5.jpg" height="700" width="600" loading="lazy" alt="The uniqueness is quality" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 5.jpg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Design</a>
</li>
<li>
<a href="#" class="card-tag">Lifestyle</a>
</li>
<li>
<a href="#" class="card-tag">Idea</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
The differnce is quality
</a>
</h3>
<p class="card-text">
This statement implies that quality is the defining factor that sets things apart. It suggests that variations or distinctions between entities, ideas, or products can be primarily attributed to differences in their quality. It emphasizes the importance of assessing and recognizing the varying levels of excellence, superiority, or value present among different things or aspects.
</p>
</div>
</div>
</li>
<li class="scrollbar-item">
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 600; --height:700;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 6.jpg" width="600" height="700" loading="lazy" alt="Problems are not stop signs, they are guidelines" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 6.jpg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Idea</a>
</li>
<li>
<a href="#" class="card-tag">Creating</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Problems are not stop signs, they are guidelines
</a>
</h3>
<p class="card-text">
This quote suggests that obstacles or challenges should not be viewed as barriers to halt progress, but rather as indicators or pointers that can offer direction or insight. It encourages a perspective that perceives problems not as insurmountable barriers, but as opportunities for learning, growth, and guidance in navigating towards a solution.
</p>
</div>
</div>
</li>
</ul>
</div>
</section>
<!--
**Recent Post
-->
<section class="section recent" aria-label="recent post">
<div class="container">
<div class="title-wrapper">
<h2 class="h2 section-title">
See what we have<strong class="strong">written lately</strong>
</h2>
<div class="top-author">
<ul class="avatar-list">
<li class="avatar-item">
<a href="#" class="avatar large img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 1.jpeg" width="150" height="150" alt="top author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar large img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="150" height="150" alt="top author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar large img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 3.jpeg" width="150" height="150" alt="top author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar large img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 4.jpeg" width="150" height="150" alt="top author" class="img-cover">
</a>
</li>
</ul>
<span class="span">Meet the top authors</span>
</div>
</div>
<ul class="grid-list">
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 650; --height: 760;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 1.jpg" width="650" height="760" loading="lazy" alt="Creating is a privilage but it's also a gift" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 6.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 3.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Lifestyle</a>
</li>
<li>
<a href="#" class="card-tag">People</a>
</li>
<li>
<a href="#" class="card-tag">Review</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">Creating is a privilage and also a gift</a>
</h3>
<p class="card-text">This statement implies that the act of creation is both an honor and a special talent bestowed upon individuals. It suggests that the ability to create, whether it's in the form of art, innovation, ideas, or any other creative endeavor, is a privilege that brings with it a sense of responsibility and appreciation for the unique capacity to generate something new and meaningful.</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 650; --height: 760">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 2.jpg" width="650" height="760" loading="lazy" alt="Being unique is better than being perfect" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 4.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Design</a>
</li>
<li>
<a href="#" class="card-tag">Product</a>
</li>
<li>
<a href="#" class="card-tag">Idea</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Being unique is better than being perfect.
</a>
</h3>
<p class="card-text">
This statement advocates for the value of individuality and distinctiveness over striving for flawlessness or perfection. It suggests that embracing one's uniqueness, with all its quirks and imperfections, holds more significance and authenticity than trying to conform to an idealized standard of perfection. It emphasizes the beauty and strength found in embracing one's originality, differences, and personal authenticity rather than pursuing an unattainable standard of flawlessness.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width:650; --height: 760;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 3.jpg" width="650" height="760" loading="lazy"
alt="Now we're getting somewhere" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 5.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Idea</a>
</li>
<li>
<a href="#" class="card-tag">Product</a>
</li>
<li>
<a href="#" class="card-tag">Review</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Now we are getting somewhere
</a>
</h3>
<p class="card-text">
This phrase implies progress or advancement in a situation or conversation. It suggests that positive momentum or a breakthrough is being made, indicating a sense of achievement or a step forward toward a goal or understanding.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 650; --height: 760;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 4.jpg" width="650" height="760" loading="lazy" alt="The trick is getting more done is to have the freedom to roam around" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 100; --height: 100;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 1.jpeg" width="150" height="150" loading="lazy" alt="Author"
class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">Lifestyle</a>
</li>
<li>
<a href="#" class="card-tag">Design</a>
</li>
</ul>
<h3 class="h4">
<a href="#" class="card-title hover:underline">
The trick to getting more done is to have the freedom to roam around
</a>
</h3>
<p class="card-text">
This statement suggests that having the liberty or flexibility to move about, explore, and approach tasks or responsibilities from different perspectives can enhance productivity. It implies that a certain level of freedom or flexibility in how one manages their time or approaches their work can lead to increased efficiency and accomplishment. The ability to navigate various tasks or spaces freely may contribute positively to getting more work done effectively.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 650; --height: 760;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 5.jpg" width="650" height="760" loading="lazy"
alt="Every day, in every city and town across the country" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 100; --height: 100;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="100" height="100" loading="lazy" alt="Author"
class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 100; --height: 100;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 4.jpeg" width="100" height="100" loading="lazy" alt="Author"
class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">People</a>
</li>
<li>
<a href="#" class="card-tag">Story</a>
</li>
<li>
<a href="#" class="card-tag">Lifestyle</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Every day, in every city and town across the country
</a>
</h3>
<p class="card-text">
The phrase "Every day, in every city and town across the country" sets the stage for a broad and inclusive statement or observation. It signifies a universal occurrence or a commonality that happens consistently in diverse locations throughout the nation. This phrase often introduces a discussion, story, or observation that pertains to widespread or shared experiences, emphasizing the pervasive nature of a particular phenomenon across various geographical areas.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 650; --height: 760;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recent 6.jpg" width="650" height="760" loading="lazy" alt="Your voice, your mind, your story, your vision" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 3.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<ul class="card-meta-list">
<li>
<a href="#" class="card-tag">People</a>
</li>
<li>
<a href="#" class="card-tag">Review</a>
</li>
<li>
<a href="#" class="card-tag">Story</a>
</li>
</ul>
<h3 class="h3">
<a href="#" class="card-title hover:underline">
Your voice, your mind, your story, your vision
</a>
</h3>
<p class="card-text">
That's a beautiful sentiment! Our individual voices, thoughts, experiences, and perspectives shape our unique stories and visions of the world. Each person's voice carries a distinct tone, their mind holds vast ideas and knowledge, their story reflects personal journeys, and their vision paints a picture of the future they aspire to create. Embracing and sharing these elements can lead to powerful connections, understanding, and the enrichment of our collective human experience.
</p>
</div>
</div>
</li>
</ul>
<button class="btn">Load more</button>
</div>
</section>
<!--
***Recommended Post
-->
<section class="section recommended" aria-label="recomended post">
<p class="section-subtitle">
<strong class="strong">Recommended</strong>
</p>
<ul class="grid-list">
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 400; --height: 460;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recomended 1.jpg" width="400" height="460" loading="lazy" alt="Having the freedom to move around is the key to achieving greater productivity." class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 1.jpeg" width="150" height="150" loading="lazy" alt="Author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 2.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<h3 class="h5">
<a href="#" class="card-title hover:underline">Having the freedom to move around is the key to achieving greater productivity.</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 400; --height: 460;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recomended 2.jpg" width="400" height="460" loading="lazy" alt="Every day, in every city and town across the country" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 3.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<h3 class="h5">
<a href="#" class="card-title hover:underline">
Every day, in every town across the country
</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 400; --height: 460;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recomended 3.jpg" width="400" height="460" loading="lazy" alt="author" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\featured 4.jpg" height="150" width="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<h3 class="h5">
<a href="#" class="card-title hover:underline">
I work my best when my space id filled with inspiration
</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 400; --height: 460;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recomended 4.jpg" height="460" width="400" loading="lazy" alt="author" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 5.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 6.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>
<div class="card-content">
<h3 class="h5">
<a href="#" class="card-title hover:underline">
I have my own definition of minimalism
</a>
</h3>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder" style="--width: 400; --height: 460;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\recomended 5.jpg" width="400" height="460" loading="lazy" alt="author" class="img-cover">
<ul class="avatar-list absolute">
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 6.jpeg" height="150" width="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
<li class="avatar-item">
<a href="#" class="avatar img-holder" style="--width: 150; --height: 150;">
<img src="C:\Users\paart\OneDrive\Desktop\Vscode-Codes\Bloggitt!!!\Assets\images\author 1.jpeg" width="150" height="150" loading="lazy" alt="author" class="img-cover">
</a>
</li>
</ul>
</figure>