-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbbiz.html
1248 lines (1239 loc) · 76.5 KB
/
bbiz.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>
<title>No Silence | Black Lives Matter</title>
<meta name="viewport" content="width=device-width">
<meta name="Description" content="Project created created as an accessible resource to aid the black community.">
<meta name="image" property="og:image" content="https://imgur.com/qeM6zwy">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- <script type="text/javascript" src="search.js"></script> -->
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a href="index.html" class="nav-link">No Silence</a></li>
<li class="nav-item"><a href="home.html" class="nav-link">Action Items</a></li>
<li class="nav-item"><a href="mhealth.html" class="nav-link">Mental Health</a></li>
<li class="nav-item"><a href="bbiz.html" class="nav-link">Black-owned Businesses</a></li>
<li class="nav-item"><a href="arts.html" class="nav-link">Arts</a></li>
<li class="nav-item"><a href="online.html" class="nav-link">Online</a></li>
<li class="nav-item"><a href="orgs.html" class="nav-link">Organizations</a></li>
<li class="nav-item"><a href="endsars.html" class="nav-link">#EndSARS</a></li>
<li class="nav-item"><a href="other.html" class="nav-link">Other</a></li>
</ul>
</div>
</nav>
<main id="content">
<!-- <div class="container">
<input class="search-bar flex" type="text" id="myInput" onkeyup="myFunction()" placeholder="Search">
</div> -->
<div class="ml-5 mt-5">
<nav class="tags-nav">
<a href="#" class="tag-link">tag</a>
</nav>
<section class="posts by-tags show-grid">
<h1 class="posts-title">Links</h1>
<article class="post tag etsy clothing">
<h2><a href="https://www.etsy.com/shop/ShopSinisterSisters">Sinister Sisters</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag etsy bath-body">
<h2><a href="https://www.etsy.com/shop/MamaAswan">MamaAswan</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag etsy crochet">
<h2><a href="https://www.etsy.com/shop/TheScarvinArtist">TheScarvinArtist</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#crochet</div>
</article>
<article class="post tag etsy list">
<h2><a href="https://themadmommy.com/black-owned-etsy-shops/">1500+ Black Owned Etsy Shops</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#list</div>
</article>
<article class="post tag etsy fragrance">
<h2><a href="https://www.etsy.com/shop/FolieApothecary">FolieApothecary</a> - ON BREAK</h2>
<div class="viztag">#etsy</div>
<div class="viztag">#fragrance</div>
</article>
<article class="post tag etsy photography">
<h2><a href="https://www.etsy.com/shop/lightplusink">lightplusink</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#photography</div>
</article>
<article class="post tag etsy art">
<h2><a href="https://www.etsy.com/shop/GNODpop?ref=l2-shop-info-avatar">GNODpop</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#art</div>
</article>
<article class="post tag etsy clothing">
<h2><a href="https://www.etsy.com/shop/KubiteesClothing?">KubiteesClothing</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag etsy jewelry">
<h2><a href="https://www.etsy.com/shop/NkossiBoutique/">NkossiBoutique</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#jewelry</div>
</article>
<article class="post tag etsy embroidery">
<h2><a href="https://www.etsy.com/shop/SirensSongStitchery?#items">SirensSongStitchery</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#embroidery</div>
</article>
<article class="post tag etsy art">
<h2><a href="https://www.etsy.com/shop/soapboxtheory?#items">Soapbox Theory</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#art</div>
</article>
<article class="post tag clothing bath-body hair art jewelry home">
<h2><a href="https://www.miiriya.com/">Miiriya</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#bath-body</div>
<div class="viztag">#hair</div>
<div class="viztag">#art</div>
<div class="viztag">#jewelry</div>
<div class="viztag">#home</div>
</article>
<article class="post tag health thread Texas">
<h2><a href="https://twitter.com/iMoney_/status/1271136943288594433">List of Black OBGYNs in Dallas TX</a></h2>
<div class="viztag">#health</div>
<div class="viztag">#thread</div>
<div class="viztag">#Texas</div>
</article>
<article class="post tag media">
<h2><a href="https://docs.google.com/spreadsheets/d/1u-oBWaCteApSj7tYn4zo2jwEpT1bHFu_TapmT2MTEew/edit#gid=1008468716">Black owned media companies database</a></h2>
<div class="viztag">#media</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://www.cincinnati.com/story/entertainment/2020/02/11/black-owned-restaurants-cincinnati/4672759002/">25 Black-owned restaurants in Cincinnati</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.cosmopolitan.com/style-beauty/fashion/g32733776/black-owned-clothing-brands/">40 Black-owned Clothing Brands</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag Ohio">
<h2><a href="https://www.cincinnatimagazine.com/article/25-black-owned-cincinnati-businesses-you-can-support/?utm_campaign=Social%20Media%202020&utm_content=130836107&utm_medium=social&utm_source=facebook&hss_channel=fbp-127357105516">25-PLUS BLACK-OWNED CINCINNATI BUSINESSES YOU CAN SUPPORT</a></h2>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food Georgia">
<h2><a href="https://www.juiceheadsatl.com/">Juiceheads ATL</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Georgia</div>
</article>
<article class="post tag digital-brush photoshop procreate">
<h2><a href="https://www.simkray.london/shop">Simkray || Shop</a></h2>
<div class="viztag">#digital-brush</div>
<div class="viztag">#photoshop</div>
<div class="viztag">#procreate</div>
</article>
<article class="post tag jewelry art clothing">
<h2><a href="https://thefancyfriend.com/">The Fancy Friend Shop</a></h2>
<div class="viztag">#jewelry</div>
<div class="viztag">#art</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag candles">
<h2><a href="https://freresbranchiaux.com/">Frères Branchiaux Candle Co.</a></h2>
<div class="viztag">#candles</div>
</article>
<article class="post tag hair">
<h2><a href="https://boholocs.com/">Boho Locs</a></h2>
<div class="viztag">#hair</div>
</article>
<article class="post tag skate clothing">
<h2><a href="https://propergnar.com/">Proper Gnar</a></h2>
<div class="viztag">#skate</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag home">
<h2><a href="https://massovermatter.com/">Mass Over Matter</a></h2>
<div class="viztag">#home</div>
</article>
<article class="post tag art">
<h2><a href="https://www.ribbsresin.com/">Ribbs Resin</a></h2>
<div class="viztag">#art</div>
</article>
<article class="post tag etsy art list">
<h2><a href="https://linktr.ee/Tylathecreative">Tylathecreative</a></h2>
<div class="viztag">#etsy</div>
<div class="viztag">#art</div>
<div class="viztag">#list</div>
</article>
<article class="post tag clothing hair">
<h2><a href="https://mnjsales.com/">MNJSALES</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#hair</div>
</article>
<article class="post tag mutual-aid">
<h2><a href="https://twitter.com/chancethedev/status/1280954183248576512">Morgan Frazier - a mod-severe special ed teacher who purchases her own supplies</a></h2>
<div class="viztag">#mutual-aid</div>
</article>
<article class="post tag smoking">
<h2><a href="https://etherealsouls.com/">EtherealSouls</a></h2>
<div class="viztag">#smoking</div>
</article>
<article class="post tag media patreon">
<h2><a href="https://www.patreon.com/ImaniBarbarin">Crutches and Spice</a></h2>
<div class="viztag">#media</div>
<div class="viztag">#patreon</div>
</article>
<article class="post tag home">
<h2><a href="https://www.highpointsofafactory.com/">High Point Sofa Factory</a></h2>
<div class="viztag">#home</div>
</article>
<article class="post tag food Georgia thread">
<h2><a href="https://twitter.com/GAFollowers/status/1276124810968522752">Black-owned restaurants in Atlanta sorted by the side of town they're on</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Georgia</div>
<div class="viztag">#thread</div>
</article>
<article class="post tag jewelry">
<h2><a href="https://thenubamboo.com/">The Nu Bamboo</a></h2>
<div class="viztag">#jewelry</div>
</article>
<article class="post tag food California thread">
<h2><a href="https://twitter.com/itsyagirlkaylen/status/1270794648437448704?s=21">Black-owned restaurants in the Bay Area</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#California</div>
<div class="viztag">#thread</div>
</article>
<article class="post tag mutual-aid">
<h2><a href="https://www.gofundme.com/f/black-owned-beauty-supplyamp-salon-in-austintx?rcid=r01-159269741118-d383090b99f94a65&pc=tw_co_campmgmt_w&utm_medium=social&utm_source=twitter&utm_campaign=p_lico+share-sheet">GoFundMe: A Black owned Salon were you feel safe and welcome</a></h2>
<div class="viztag">#mutual-aid</div>
</article>
<article class="post tag home art bath-body wine">
<h2><a href="https://www.instagram.com/p/CBoR2eaAu2_/?igshid=ux3668ws4m27">Black-owned home essentials</a></h2>
<div class="viztag">#home</div>
<div class="viztag">#art</div>
<div class="viztag">#bath-body</div>
<div class="viztag">#wine</div>
</article>
<article class="post tag beauty">
<h2><a href="https://blackbeautybase.ck.page/23ad3687cb">Black Beauty Base</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag art">
<h2><a href="https://faithebeyart.com/">Faithe Bey Artworks</a></h2>
<div class="viztag">#art</div>
</article>
<article class="post tag home thread">
<h2><a href="https://twitter.com/themattiejames/status/1271604207423033350">Twitter thread of Black-owned houseware lines</a></h2>
<div class="viztag">#home</div>
<div class="viztag">#thread</div>
</article>
<article class="post tag clothing">
<h2><a href="https://twitter.com/Mindless_BMD/status/1270850785442779136">Brehanna Daniels shirts</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag lingerie">
<h2><a href="https://www.lovevera.com/">Love, Vera</a></h2>
<div class="viztag">#lingerie</div>
</article>
<article class="post tag food California">
<h2><a href="https://www.instagram.com/allureesmenu/">LA based vegan chef - @allureesmenu</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#California</div>
</article>
<article class="post tag yoga community culture">
<h2><a href="https://www.mayablack.org/">mayablack</a></h2>
<div class="viztag">#yoga</div>
<div class="viztag">#community</div>
<div class="viztag">#culture</div>
</article>
<article class="post tag food">
<h2><a href="https://www.tubbystaste.com/">Tubby's Taste</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag beauty">
<h2><a href="https://www.sachacosmetics.com/">Sacha Cosmetics</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag beauty">
<h2><a href="https://www.mymarylouise.com/">Mary Louise Cosmetics</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag contact food">
<h2><a href="https://thatshellanuts.com/">Hella Nuts</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.mayascookies.com/">Maya's Cookies</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://symphonychips.com/">Symphony Potato Chips</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.eatprojectpop.com/">Project Pop Organic Kettle Corn</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food clothing">
<h2><a href="https://fineapplevegan.com/">Fineapple Vegan</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag food">
<h2><a href="https://www.southernrootsvegan.com/">Southern Roots Vegan Bakery</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag wellness">
<h2><a href="https://www.naturade.com/">Naturade</a></h2>
<div class="viztag">#wellness</div>
</article>
<article class="post tag list Ohio">
<h2><a href="https://www.instagram.com/p/CBGJSlsFzUq/?igshid=15az6zl0fvida">Black-owned Cincinnati businesses</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag hair bath-body stationary clothing">
<h2><a href="https://melaninmagicaf.com/">Melanin Magic AF</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#bath-body</div>
<div class="viztag">#stationary</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag list Ohio North-Carolina">
<h2><a href="https://www.instagram.com/p/CBOG6_WBdmN/?igshid=1fb9fziummk69">Black-owned businesses to buy from in Ohio and North Carolina</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#Ohio</div>
<div class="viztag">#North-Carolina</div>
</article>
<article class="post tag list occult">
<h2><a href="https://www.buzzfeed.com/sydrobinson1/black-owned-witch-shops?utm_source=dynamic">17 Black-Owned Occult Shops That Every Witch — And Their Entire Coven — Should Support</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#occult</div>
</article>
<article class="post tag hair wellness">
<h2><a href="https://www.neocurly.com/">NeoCurly</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#wellness</div>
</article>
<article class="post tag food">
<h2><a href="https://www.foodcravingz.com/">Food Cravingz</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food lifestyle DC">
<h2><a href="https://www.wharfdc.com/">District Wharf</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#lifestyle</div>
<div class="viztag">#DC</div>
</article>
<article class="post tag home">
<h2><a href="https://www.modishdecorpillows.com/">Modish Decor Pillows</a></h2>
<div class="viztag">#home</div>
</article>
<article class="post tag food">
<h2><a href="https://linktr.ee/MontesSK">Monte's Sweet Krunch</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag garden">
<h2><a href="https://feelgrounded.com/">grounded</a></h2>
<div class="viztag">#garden</div>
</article>
<article class="post tag business">
<h2><a href="https://www.rebuildblackbusiness.com/">Rebuild Black Business</a></h2>
<div class="viztag">#business</div>
</article>
<article class="post tag list food">
<h2><a href="https://melaninislife.com/blogs/lifestyle/black-owned-bakery">66 Black-owned bakeries in the U.S.</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#food</div>
</article>
<article class="post tag list pets">
<h2><a href="https://boogiethepug.com/black-owned-dog-businesses/">Black-owned dog businesses</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#pets</div>
</article>
<article class="post tag food">
<h2><a href="https://aubreystreatlab.com/">Aubrey's Treat Lab</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.instagram.com/d_sweettreats/?hl=en">Do'Monique's Sweet Treats</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag home">
<h2><a href="https://effortlesscomposition.com/">Effortless Composition</a></h2>
<div class="viztag">#home</div>
</article>
<article class="post tag clothing">
<h2><a href="https://gothiclamb.com/">Gothic Lamb</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing jewelry beauty">
<h2><a href="https://glamgothbeauty.com/">Glam Goth Beauty</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#jewelry</div>
<div class="viztag">#beauty</div>
</article>
<article class="post tag food Georgia">
<h2><a href="https://www.iscreamroll.com/">IScream</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Georgia</div>
</article>
<article class="post tag kids">
<h2><a href="https://healthyrootsdolls.com/">Healthy Roots Dolls</a></h2>
<div class="viztag">#kids</div>
</article>
<article class="post tag hair Maryland">
<h2><a href="https://nattylocksboutique.com/">Natty Locks Boutique</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#Maryland</div>
</article>
<article class="post tag hair Maryland">
<h2><a href="https://shopapexbeauty.com/">APEX Beauty</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#Maryland</div>
</article>
<article class="post tag hair">
<h2><a href="https://shopbeautyplus.com/">shop beauty plus</a></h2>
<div class="viztag">#hair</div>
</article>
<article class="post tag hair beauty clothing">
<h2><a href="https://www.envyusbeautysupply.com/">Envy Us Beauty Supply</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#beauty</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag hair DC">
<h2><a href="https://georgiabeautysupply.wordpress.com/">Georgia Beauty Supply</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#DC</div>
</article>
<article class="post tag hair">
<h2><a href="https://www.mariebeautysupplies.com/">Marie's Beauty Supply</a></h2>
<div class="viztag">#hair</div>
</article>
<article class="post tag list food fitness Michigan">
<h2><a href="https://www.instagram.com/p/CA8J798HwaG/?igshid=1ryg535xn9wug">Black owned fuel/movement in Metro Detroit</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#food</div>
<div class="viztag">#fitness</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag list hair">
<h2><a href="https://www.instagram.com/p/CA_NzsZJPVo/?igshid=zabzi981ww16">Black-owned natural hair brands</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#hair</div>
</article>
<article class="post tag list bath-body beauty food clothing jewelry kids art stationary wellness books">
<h2><a href="https://www.instagram.com/p/CA64OIaBBne/?igshid=1w2pcm74o1awo">Black owned small businesses you can support anywhere</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#bath-body</div>
<div class="viztag">#beauty</div>
<div class="viztag">#food</div>
<div class="viztag">#clothing</div>
<div class="viztag">#jewelry</div>
<div class="viztag">#kids</div>
<div class="viztag">#art</div>
<div class="viztag">#stationary</div>
<div class="viztag">#wellness</div>
<div class="viztag">#books</div>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag candles">
<h2><a href="https://www.mintandcoco.co/">mint & coco</a></h2>
<div class="viztag">#candles</div>
</article>
<article class="post tag clothing stationary">
<h2><a href="https://ambitionunlocked.com/">Ambition Unlocked</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#stationary</div>
</article>
<article class="post tag food">
<h2><a href="https://www.facebook.com/pg/rubysdelightseatery/posts/">Ruby's Delights Eatery</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://www.facebook.com/Juicing-Jammers-LLC-189278298435762/">Juicing Jammers LLC</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://edenspicedayton.com/">Eden Spice</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food">
<h2><a href="https://www.grindhousecoffeeandteacompany.com/">Grind House Coffee and Tea Company</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.facebook.com/TreatsbyTressa/">Treats by Tressa</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.sweetraindesserts.com/">Sweet Rain Desserts</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.twistcupcakery.com/">Twist Cupcakery</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://sproutingdreams.weebly.com/">Sprouting Dreams</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag brewing Ohio">
<h2><a href="https://www.alematicbrewing.com/">Alematic Artisan Ales</a></h2>
<div class="viztag">#brewing</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food">
<h2><a href="https://www.simplysavorybyrachel.com/">Simply Savory by Rachel</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://www.facebook.com/pages/Invoke/506466080121501">Invoke</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food">
<h2><a href="https://www.muttssauce.com/">Mutt's Sauce</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://tastetlove.com/">Taste-T-Love Baby Food</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag bath-body">
<h2><a href="https://naturallivity.co/">Natural Livity</a></h2>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag beauty">
<h2><a href="https://nedas-natural-beauty.ueniweb.com/#services">Neda's Natural Beauty</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag beauty Ohio">
<h2><a href="https://beautebox.squarespace.com/">Beaute Box</a></h2>
<div class="viztag">#beauty</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag beauty Ohio">
<h2><a href="https://www.daytonpowderbrows.com/">Dayton Powder Brows</a></h2>
<div class="viztag">#beauty</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag beauty Ohio">
<h2><a href="https://www.facebook.com/RAWCOSMETX/">Raw Cosmetx</a></h2>
<div class="viztag">#beauty</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag beauty fragrance">
<h2><a href="https://theuniquearomas.com/">Unique Aromas</a></h2>
<div class="viztag">#beauty</div>
<div class="viztag">#fragrance</div>
</article>
<article class="post tag bath-body Ohio">
<h2><a href="https://www.facebook.com/TheBOSHCompany/">BOSH Co</a></h2>
<div class="viztag">#bath-body</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag wellness Ohio">
<h2><a href="https://www.presenttensefitness.com/">Present Tense Fitness</a></h2>
<div class="viztag">#wellness</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag hair Ohio">
<h2><a href="http://www.puffapothecary.com/">Puff Apothecary</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag bath-body candles">
<h2><a href="https://www.babaloveorganics.com/">Baba Love Organics</a></h2>
<div class="viztag">#bath-body</div>
<div class="viztag">#candles</div>
</article>
<article class="post tag hair">
<h2><a href="https://www.arcanicoilcare.com/">Arcani Coil Care</a></h2>
<div class="viztag">#hair</div>
</article>
<article class="post tag media">
<h2><a href="https://dcthaproducer.com/">DCThaproducer</a></h2>
<div class="viztag">#media</div>
</article>
<article class="post tag art clothing">
<h2><a href="https://www.arthasnorules.com/home">Art Has No Rules</a></h2>
<div class="viztag">#art</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag stylist">
<h2><a href="https://www.facebook.com/Dourje/">Dourjé The Fashion Stylist</a></h2>
<div class="viztag">#stylist</div>
</article>
<article class="post tag photography">
<h2><a href="http://www.shuttereyephoto.com/">Shutter Eye Photo</a></h2>
<div class="viztag">#photography</div>
</article>
<article class="post tag photography">
<h2><a href="https://ap2photography.com/">AP2 Photography</a></h2>
<div class="viztag">#photography</div>
</article>
<article class="post tag art home">
<h2><a href="https://www.yetunderodriguez.com/">Yetunde Rodriguez Designs</a></h2>
<div class="viztag">#art</div>
<div class="viztag">#home</div>
</article>
<article class="post tag fitness Ohio">
<h2><a href="https://www.dcdc.org/">Dayton Contemporary Dance Company</a></h2>
<div class="viztag">#fitness</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag art media Ohio">
<h2><a href="https://www.scriptedinblack.com">Scripted in Black</a></h2>
<div class="viztag">#art</div>
<div class="viztag">#media</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag clothing">
<h2><a href="http://rhinestonebeauty.com/">Rhinestone Beauty</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing art">
<h2><a href="https://denysrose.com/">DenysRose</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#art</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.greekstylez.com/">GreekStylez</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag candles Ohio">
<h2><a href="https://www.facebook.com/pg/TashasCommonScents/posts/">Tasha's Common Scents</a></h2>
<div class="viztag">#candles</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag candles">
<h2><a href="https://www.locdnscent.com/">Loc'd N Scent</a></h2>
<div class="viztag">#candles</div>
</article>
<article class="post tag clothing Ohio">
<h2><a href="https://www.facebook.com/BoujeeBeeB/">Boujee Bee B</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag clothing Ohio">
<h2><a href="https://www.thezedealz.com/">Theze Dealz</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag DIY Ohio">
<h2><a href="https://shopnowandzen.com/">Now and Zen DIY Studio</a></h2>
<div class="viztag">#DIY</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag list business Illinois">
<h2><a href="https://blackownedchicago.com/">Black owned businesses</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#business</div>
<div class="viztag">#Illinois</div>
</article>
<article class="post tag thread food California">
<h2><a href="https://twitter.com/akilahgreen/status/1268282677238480896">Black-owned L.A. restaurants</a></h2>
<div class="viztag">#thread</div>
<div class="viztag">#food</div>
<div class="viztag">#California</div>
</article>
<article class="post tag list food">
<h2><a href="https://dine.black/">Dine.Black</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#food</div>
</article>
<article class="post tag candles fragrance">
<h2><a href="https://poshcandleco.com/">Posh Candle Co.</a></h2>
<div class="viztag">#candles</div>
<div class="viztag">#fragrance</div>
</article>
<article class="post tag community Ohio">
<h2><a href="https://www.cradlecincinnati.org/queensvillage/">Queens Village | Cradle Cincinnati</a></h2>
<div class="viztag">#community</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag clothing">
<h2><a href="https://originalitees.com/">ORIGINALITEES</h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag accessories">
<h2><a href="https://www.coloringpins.com/">Coloring Pins</a></h2>
<div class="viztag">#accessories</div>
</article>
<article class="post tag art">
<h2><a href="https://www.debracartwright.com/">Debra Cartwright</a></a></h2>
<div class="viztag">#art</div>
</article>
<article class="post tag art books">
<h2><a href="https://www.tactilematter.com/">Tactile Matter</a></h2>
<div class="viztag">#art</div>
<div class="viztag">#books</div>
</article>
<article class="post tag candles">
<h2><a href="https://www.litbklyn.co/get-lit">LIT Brooklyn</a></h2>
<div class="viztag">#candles</div>
</article>
<article class="post tag stationary art">
<h2><a href="https://www.unwrp.com/">UNWRP</a></h2>
<div class="viztag">#stationary</div>
<div class="viztag">#art</div>
</article>
<article class="post tag food">
<h2><a href="https://tradestjamco.com/">Trade Street Jam Co</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag food">
<h2><a href="https://www.thespicesuite.com/">The Spice Suite</a></h2>
<div class="viztag">#food</div>
</article>
<article class="post tag home">
<h2><a href="https://www.linoto.com/">Linoto Linen</a></h2>
<div class="viztag">#home</div>
</article>
<article class="post tag jewelry">
<h2><a href="https://omiwoods.com/">Omi Woods</a></h2>
<div class="viztag">#jewelry</div>
</article>
<article class="post tag clothing">
<h2><a href="https://pyermoss.com/">Pyer Moss</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing jewelry stationary">
<h2><a href="https://edas.store/">EDAS</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#jewelry</div>
<div class="viztag">#stationary</div>
</article>
<article class="post tag clothing">
<h2><a href="https://martine-rose.com/">Martine ROSE</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag jewelry">
<h2><a href="https://www.thirdcrown.com/">Third Crown</a></h2>
<div class="viztag">#jewelry</div>
</article>
<article class="post tag jewelry clothing">
<h2><a href="https://sincerelytommy.com/">Sincerely, Tommy</a></h2>
<div class="viztag">#jewelry</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing beauty">
<h2><a href="https://williamokpo.com/collections/shop-all-1">WILLIAM OKPO</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#beauty</div>
</article>
<article class="post tag clothing">
<h2><a href="https://brothervellies.com/">Brother Vellies</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag hair">
<h2><a href="https://linktr.ee/briogeohaircare">Briogeo Hair Care</a></h2>
<div class="viztag">#hair</div>
</article>
<article class="post tag wellness New-York">
<h2><a href="https://www.healhaus.com/">Heal Haus</a></h2>
<div class="viztag">#wellness</div>
<div class="viztag">#New-York</div>
</article>
<article class="post tag beauty">
<h2><a href="https://www.mentedcosmetics.com/">Mented Cosmetics</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag beauty">
<h2><a href="https://www.laurennapier.com/">LAUREN NAPIER BEAUTY</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag bath-body">
<h2><a href="https://www.ouithepeople.com/">OUI the people</a></h2>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag bath-body">
<h2><a href="https://plantapothecary.com/">PLANT Apothecary</a></h2>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag wellness">
<h2><a href="https://golde.co/collections/all">golde</a></h2>
<div class="viztag">#wellness</div>
</article>
<article class="post tag thread food Kentucky">
<h2><a href="https://twitter.com/mbrockjohnson/status/1268184548715696128">Black owned restaurants</a></h2>
<div class="viztag">#thread</div>
<div class="viztag">#food</div>
<div class="viztag">#Kentucky</div>
</article>
<article class="post tag thread business">
<h2><a href="https://twitter.com/Shopify/status/1268165028152258570">Black business owner Twitter thread</a></h2>
<div class="viztag">#thread</div>
<div class="viztag">#business</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.mebylee.com/">Me by Lee Boutique</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag food Ohio">
<h2><a href="http://www.justqin.com/">Justin Q'in BBQ</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://www.cakesbysugar.com/">Sugar</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag beauty Ohio">
<h2><a href="https://www.facebook.com/pages/category/Waxing-Service/Killer-Brows-Lashes-228666313857135/">Killer Brows & Lashes</a></h2>
<div class="viztag">#beauty</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag food Ohio">
<h2><a href="https://www.facebook.com/blaCkCoffeeCincy/">BlaCk Cofee Lounge</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Ohio</div>
</article>
<article class="post tag list business North-Carolina">
<h2><a href="https://www.blackdollar.ninja/businesses?category=Raleigh">Black-owned businesses in Raleigh</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#business</div>
<div class="viztag">#North-Carolina</div>
</article>
<article class="post tag list business">
<h2><a href="https://docs.google.com/document/d/1wJUm5YK7NV9lkSMyNuXzfcx_r2EMFiilthyEvIpQYv4/mobilebasic">Masterlist of Black-owned businesses</a></h2>
<div class="viztag">#list</div>
<div class="viztag">#business</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://coopdetroit.com/">Coop Caribbean Fusion (Detroit)</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://www.yumvillage.com/">Yum Village</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://www.motownbistro.com/">Motown Bistro</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://thenarrowwaycafe.com/">Narrow Way Cafe</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://floodsdetroit.com/">Flood's Bar & Grill</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://www.folkdetroit.com/">Folk</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://www.thejamaicanpot.com/">The Jamaican Pot</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://goodcakesandbakes.com/">Good Cakes and Bakes</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://www.detroitvegansoul.com/">Detroit Vegan Soul</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://lecreperoyaloak.com/">La Crepe</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://savannahbluedetroit.com/">Savannah Blue</a></h2>
<div class="viztag">#donate</div>
<div class="viztag">#Minnesota</div>
</article>
<article class="post tag wine">
<h2><a href="https://houseofpurevin.com/">House of Pure Vin Wine Shop</a></h2>
<div class="viztag">#wine</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://www.normagscuisine.com/">Norma G's Restaurant</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://imanoodles.com/">Ima</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="http://www.kuzzoschickenandwaffles.com/">Kuzzo's Chicken & Waffles</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag food Michigan">
<h2><a href="https://sweetpotatosensations.com/">Sweet Potato Sensations</a></h2>
<div class="viztag">#food</div>
<div class="viztag">#Michigan</div>
</article>
<article class="post tag hair clothing">
<h2><a href="http://nptresstreats.com/">NPTressTreats</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag hair bath-body">
<h2><a href="https://www.thatsthatmagic.com/">That's That Magic</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag clothing">
<h2><a href="https://teespring.com/stores/shopdamn">DAMN WRITE</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.blackgirlsdontneedfilters.com/shop">BGDNF</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://tressforus.com/shop">TRESS</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://msftsrep.com/">MSFTSrep</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://never2fly2pray.com/">Never 2 Fly 2 Pray</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://fenoel.com/">Fe Noel</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag jewelry clothing">
<h2><a href="https://www.homebyareeayl.com/">HOME by Areeayl</a></h2>
<div class="viztag">#jewelry</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag art clothing">
<h2><a href="https://laolu.nyc/">Laolu.NYC</a></h2>
<div class="viztag">#art</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.soniquesaturday.com/">SoniqueSaturday</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing jewelry">
<h2><a href="https://melodyehsani.com/">Melody Ehsani</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#jewelry</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.ateaelle.com/">ateaelle</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.hstryclothing.com/">HSTRY Clothing</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="http://maurachanz.com/shop">MAURA CHANZ</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing">
<h2><a href="https://www.blkfrvr.com/">BLK FRVR</a></h2>
<div class="viztag">#clothing</div>
</article>
<article class="post tag clothing candles">
<h2><a href="https://www.messinabottle.com/">Mess in a Bottle</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#candles</div>
</article>
<article class="post tag hair bath-body">
<h2><a href="https://mielleorganics.com/">MIELLE</a></h2>
<div class="viztag">#hair</div>
<div class="viztag">#bath-body</div>
</article>
<article class="post tag beauty">
<h2><a href="https://shop.shoppies.co/collections/ivycoco">IVYCOCO</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag clothing art home media">
<h2><a href="https://www.blkmktvintage.com/">BLK MKT Vintage</a></h2>
<div class="viztag">#clothing</div>
<div class="viztag">#art</div>
<div class="viztag">#home</div>
<div class="viztag">#media</div>
</article>
<article class="post tag books art clothing">
<h2><a href="https://rep.club/">Reparations Club</a></h2>
<div class="viztag">#books</div>
<div class="viztag">#art</div>
<div class="viztag">#clothing</div>
</article>
<article class="post tag beauty">
<h2><a href="https://bephiesbeautysupply.com/">Bephie</a></h2>
<div class="viztag">#beauty</div>
</article>
<article class="post tag wellness">
<h2><a href="https://thehoneypot.co/">Honey Pot</a></h2>
<div class="viztag">#wellness</div>
</article>