-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocwp.html
2043 lines (1435 loc) · 108 KB
/
ocwp.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
<!-- saved from url=(0022)http://127.0.0.1:8000/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title> Online Clubs with Penn </title>
<link rel="stylesheet" href="./Online Clubs with Penn_files/bulma.min.css">
</head>
<body>
<nav class="navbar is-primary" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="http://127.0.0.1:8000/">
OCwP
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
</nav>
<section class="hero is-info is-medium">
<div class="hero-body">
<div class="container">
<h1 class="title">
Online Clubs with Penn
</h1>
<h2 class="subtitle">
Welcome!
</h2>
</div>
</div>
</section>
<section class="section">
<div class="container" style="display: flex; flex-wrap: wrap;">
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Blockchain Actionable Analytics Quantum Computing Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Blockchain, Actionable Analytics, Quantum Computing, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Microservice Machine Learning Quantum Computing Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Microservice, Machine Learning, Quantum Computing, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Internet of Things Microservice Actionable Analytics Blockchain Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Internet of Things, Microservice, Actionable Analytics, and Blockchain!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Internet of Things Virtual Reality Augmented Reality Blockchain Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Internet of Things, Virtual Reality, Augmented Reality, and Blockchain!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Virtual Reality Actionable Analytics Robotics Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Virtual Reality, Actionable Analytics, Robotics, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Quantum Computing Augmented Reality Blockchain Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Quantum Computing, Augmented Reality, Blockchain, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Blockchain Quantum Computing Microservice Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Blockchain, Quantum Computing, Microservice, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Artificial Intelligence Actionable Analytics Data Mining Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Artificial Intelligence, Actionable Analytics, Data Mining, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Microservice Data Mining Big Data Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Microservice, Data Mining, Big Data, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Virtual Reality Microservice Augmented Reality Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Virtual Reality, Microservice, Augmented Reality, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Data Mining Augmented Reality Quantum Computing Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Data Mining, Augmented Reality, Quantum Computing, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Actionable Analytics Internet of Things Augmented Reality Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Actionable Analytics, Internet of Things, Augmented Reality, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Microservice Virtual Reality Machine Learning Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Microservice, Virtual Reality, Machine Learning, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Actionable Analytics Robotics Blockchain Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Actionable Analytics, Robotics, Blockchain, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Augmented Reality Robotics Machine Learning Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Augmented Reality, Robotics, Machine Learning, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Big Data Microservice Quantum Computing Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Big Data, Microservice, Quantum Computing, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Augmented Reality Artificial Intelligence Blockchain Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Augmented Reality, Artificial Intelligence, Blockchain, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Quantum Computing Actionable Analytics Robotics Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Quantum Computing, Actionable Analytics, Robotics, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Artificial Intelligence Machine Learning Robotics Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Artificial Intelligence, Machine Learning, Robotics, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Internet of Things Blockchain Big Data Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Internet of Things, Blockchain, Big Data, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Virtual Reality Blockchain Robotics Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Virtual Reality, Blockchain, Robotics, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Actionable Analytics Data Mining Robotics Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Actionable Analytics, Data Mining, Robotics, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Robotics Virtual Reality Blockchain Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Robotics, Virtual Reality, Blockchain, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Blockchain Machine Learning Robotics Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Blockchain, Machine Learning, Robotics, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Blockchain Big Data Actionable Analytics Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Blockchain, Big Data, Actionable Analytics, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Quantum Computing Machine Learning Actionable Analytics Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Quantum Computing, Machine Learning, Actionable Analytics, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Quantum Computing Artificial Intelligence Virtual Reality Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Quantum Computing, Artificial Intelligence, Virtual Reality, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Blockchain Big Data Robotics Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Blockchain, Big Data, Robotics, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Robotics Blockchain Actionable Analytics Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Robotics, Blockchain, Actionable Analytics, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Quantum Computing Microservice Robotics Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Quantum Computing, Microservice, Robotics, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Artificial Intelligence Quantum Computing Internet of Things Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Artificial Intelligence, Quantum Computing, Internet of Things, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Virtual Reality Robotics Data Mining Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Virtual Reality, Robotics, Data Mining, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Virtual Reality Internet of Things Big Data Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Virtual Reality, Internet of Things, Big Data, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Virtual Reality Data Mining Artificial Intelligence Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Virtual Reality, Data Mining, Artificial Intelligence, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Actionable Analytics Robotics Internet of Things Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Actionable Analytics, Robotics, Internet of Things, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Blockchain Microservice Robotics Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Blockchain, Microservice, Robotics, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Artificial Intelligence Big Data Robotics Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Artificial Intelligence, Big Data, Robotics, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Machine Learning Quantum Computing Data Mining Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Machine Learning, Quantum Computing, Data Mining, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Augmented Reality Actionable Analytics Robotics Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Augmented Reality, Actionable Analytics, Robotics, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Data Mining Actionable Analytics Big Data Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Data Mining, Actionable Analytics, Big Data, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Artificial Intelligence Quantum Computing Augmented Reality Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Artificial Intelligence, Quantum Computing, Augmented Reality, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Microservice Data Mining Quantum Computing Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Microservice, Data Mining, Quantum Computing, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Artificial Intelligence Microservice Robotics Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Artificial Intelligence, Microservice, Robotics, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Quantum Computing Internet of Things Augmented Reality Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Quantum Computing, Internet of Things, Augmented Reality, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Big Data Artificial Intelligence Internet of Things Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Big Data, Artificial Intelligence, Internet of Things, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Virtual Reality Machine Learning Microservice Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Virtual Reality, Machine Learning, Microservice, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Actionable Analytics Blockchain Microservice Augmented Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Actionable Analytics, Blockchain, Microservice, and Augmented Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Artificial Intelligence Machine Learning Internet of Things Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Artificial Intelligence, Machine Learning, Internet of Things, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Internet of Things Augmented Reality Artificial Intelligence Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Internet of Things, Augmented Reality, Artificial Intelligence, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Artificial Intelligence Actionable Analytics Internet of Things Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Artificial Intelligence, Actionable Analytics, Internet of Things, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Internet of Things Blockchain Microservice Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Internet of Things, Blockchain, Microservice, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Virtual Reality Actionable Analytics Augmented Reality Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Virtual Reality, Actionable Analytics, Augmented Reality, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Actionable Analytics Machine Learning Quantum Computing Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Actionable Analytics, Machine Learning, Quantum Computing, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Microservice Augmented Reality Artificial Intelligence Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Microservice, Augmented Reality, Artificial Intelligence, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Blockchain Robotics Quantum Computing Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Blockchain, Robotics, Quantum Computing, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Data Mining Actionable Analytics Internet of Things Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Data Mining, Actionable Analytics, Internet of Things, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Artificial Intelligence Quantum Computing Internet of Things Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Artificial Intelligence, Quantum Computing, Internet of Things, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Actionable Analytics Quantum Computing Robotics Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Actionable Analytics, Quantum Computing, Robotics, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Virtual Reality Machine Learning Big Data Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Virtual Reality, Machine Learning, Big Data, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Blockchain Data Mining Robotics Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Blockchain, Data Mining, Robotics, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Augmented Reality Internet of Things Actionable Analytics Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Augmented Reality, Internet of Things, Actionable Analytics, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Data Mining Microservice Robotics Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Data Mining, Microservice, Robotics, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Microservice Data Mining Virtual Reality Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Microservice, Data Mining, Virtual Reality, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Big Data Virtual Reality Data Mining Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Big Data, Virtual Reality, Data Mining, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Robotics Quantum Computing Data Mining Microservice Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Robotics, Quantum Computing, Data Mining, and Microservice!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Internet of Things Robotics Machine Learning Blockchain Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Internet of Things, Robotics, Machine Learning, and Blockchain!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Microservice Big Data Data Mining Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Microservice, Big Data, Data Mining, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Microservice Data Mining Internet of Things Blockchain Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Microservice, Data Mining, Internet of Things, and Blockchain!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Virtual Reality Big Data Augmented Reality Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Virtual Reality, Big Data, Augmented Reality, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Data Mining Artificial Intelligence Machine Learning Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Data Mining, Artificial Intelligence, Machine Learning, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Big Data Microservice Internet of Things Data Mining Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Big Data, Microservice, Internet of Things, and Data Mining!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Actionable Analytics Robotics Internet of Things Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Actionable Analytics, Robotics, Internet of Things, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Microservice Robotics Virtual Reality Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Microservice, Robotics, Virtual Reality, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Augmented Reality Artificial Intelligence Blockchain Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Augmented Reality, Artificial Intelligence, Blockchain, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Artificial Intelligence Big Data Data Mining Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Artificial Intelligence, Big Data, Data Mining, and Robotics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Data Mining Augmented Reality Machine Learning Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Data Mining, Augmented Reality, Machine Learning, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Data Mining Quantum Computing Big Data Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Data Mining, Quantum Computing, Big Data, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Actionable Analytics Machine Learning Data Mining Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Actionable Analytics, Machine Learning, Data Mining, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Quantum Computing Internet of Things Blockchain Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Quantum Computing, Internet of Things, Blockchain, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Internet of Things Robotics Virtual Reality Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Internet of Things, Robotics, Virtual Reality, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Virtual Reality Actionable Analytics Data Mining Blockchain Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Virtual Reality, Actionable Analytics, Data Mining, and Blockchain!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Machine Learning Artificial Intelligence Internet of Things Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Machine Learning, Artificial Intelligence, Internet of Things, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Blockchain Robotics Machine Learning Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Blockchain, Robotics, Machine Learning, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Robotics Augmented Reality Microservice Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Robotics, Augmented Reality, Microservice, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Data Mining Blockchain Microservice Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Data Mining, Blockchain, Microservice, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Actionable Analytics Big Data Robotics Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Actionable Analytics, Big Data, Robotics, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Internet of Things Quantum Computing Big Data Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Internet of Things, Quantum Computing, Big Data, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Artificial Intelligence Blockchain Microservice Quantum Computing Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Artificial Intelligence, Blockchain, Microservice, and Quantum Computing!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Data Mining Quantum Computing Big Data Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Data Mining, Quantum Computing, Big Data, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Actionable Analytics Artificial Intelligence Data Mining Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Environmentally Friendly</span>
</div>
<em>We do things related with Actionable Analytics, Artificial Intelligence, Data Mining, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Nursing Blockchain Quantum Computing Microservice Big Data Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Blockchain, Quantum Computing, Microservice, and Big Data!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Penn Augmented Reality Big Data Blockchain Actionable Analytics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Augmented Reality, Big Data, Blockchain, and Actionable Analytics!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Artificial Intelligence Robotics Virtual Reality Machine Learning Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Artificial Intelligence, Robotics, Virtual Reality, and Machine Learning!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Machine Learning Quantum Computing Data Mining Artificial Intelligence Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Social</span>
</div>
<em>We do things related with Machine Learning, Quantum Computing, Data Mining, and Artificial Intelligence!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Engineering Augmented Reality Quantum Computing Blockchain Virtual Reality Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Meme</span>
</div>
<em>We do things related with Augmented Reality, Quantum Computing, Blockchain, and Virtual Reality!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">Wharton Blockchain Data Mining Quantum Computing Internet of Things Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">
<span class="tag is-info is-rounded" style="margin: .1em .1em">Potato</span>
</div>
<em>We do things related with Blockchain, Data Mining, Quantum Computing, and Internet of Things!</em>
</div>
<div class="box" style="width: 300px; margin: 2em !important;">
<strong class="club-name">College Quantum Computing Artificial Intelligence Internet of Things Robotics Club</strong> <br>
<div style="display: flex; flex-wrap: wrap; width: 100%; margin-left: -.1em;">