-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathindex.html
2543 lines (2044 loc) · 89.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
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>
<head>
<title>Content Club</title>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="description" content="This is Novous Neuron's Content Club.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<script src="https://kit.fontawesome.com/fdab6bf5fd.js" crossorigin="anonymous"></script>
<body>
<a href="https://novous-neurons.github.io/" class="page-heading">
<h1>Content Club 🤳🏻</h1>
</a>
<hr>
<div class="content">
<h3>This is the collection of some of my fav. content creators across the globe..</h3>
<h6 style="text-align: left; font-size: 15px;">This collection is made by students.How to contribute: You can visit
the GitHub repo <a href="https://github.com/gamedevCloudy/content-club">here.</a> Contribution instructions have
been provided there.</h6>
<hr>
<p>Creator List: </p>
<table>
<tr class="light">
<th>Site Name</th>
<th>Description</th>
<th>Category</th>
<th>Link</th>
</tr>
<tr>
<td>Ali Abdaal</td>
<td>Doctor turned into full time content creators, really enjoable.</td>
<td>Productivity</td>
<td class="links"><a href="https://www.youtube.com/c/aliabdaal" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<br>
<tr>
<td>Thomas Frank</td>
<td>frank creates content on Productivity and student lifestyle.</td>
<td>Productivity and Studies</td>
<td class="links"><a href="https://www.youtube.com/c/Thomasfrank" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>Matt D'Avella</td>
<td>He's just a minimal person with great vibes. Really good filmaker.</td>
<td>Productivity and Studies</td>
<td class="links"><a href="https://www.youtube.com/c/MattDAvella" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>Ajay Naggar</td>
<td>One of the most famous youtuber in Asia, with 3cr+ subcribers. Known for his gaming and raosting</td>
<td>Entertainment</td>
<td class="links"><a href="https://www.youtube.com/c/AddictedA1/featured" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>GMTK</td>
<td>Game Maker's Toolkit - a must to learn game design.</td>
<td>Game Design</td>
<td class="links"><a href="https://youtube.com/c/MarkBrownGMT" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>Austin Evans</td>
<td>From gaming PCs to smartphones, Austin reviews anything and everything about tech.</td>
<td>Technology review </td>
<td class="links"><a href="https://www.youtube.com/c/austinevans" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>template</td>
<td>description goes here.</td>
<td>template Category</td>
<td class="links"><a href="" target="_blank"><i class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>Ranveer Allahbadia</td>
<td>He's a fitness freak with great spiritual knowledge.He also host podcasts. </td>
<td>Fitness and Knowledge</td>
<td class="links"><a href="https://www.youtube.com/c/RanveerAllahbadia" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>larry fink</td>
<td>Owns richest company in the world</td>
<td>Global Hedge Fund</td>
<td class="links"><a href="https://www.blackrock.com/corporate" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<!-- Hey prathmesh -->
<tr>
<td>Abhishek Chavda</td>
<td>He is a Theoretical physicist, historian, Geopolitical analyst, and a writer</td>
<td>Geo-Politics and History</td>
<td class="links"><a
href=" https://www.youtube.com/redirect?event=channel_description&redir_token=QUFFLUhqa05WN3dnS1gtVWt4eEl4NHM2VC0wWXg3ZnE2UXxBQ3Jtc0tuWlFKWGlrV1R2VGFqXzhXREJEV29MUXNGX2o3TFhpQ3JEbE5UVklWQkRoc085TkZrOHl4Rld4Z01qWkFPYXlDQ2FBSmRCM1UzTjdOVmM4TVd5QW44MjVUdnBUbzFCV0VfcnZram0yUkZxNDJxdzJ0RQ&q=https%3A%2F%2Fabhijitchavda.com "
target="_blank"><i class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
<!-- Hey hrushikesh -->
</table>
<br></br>
<hr>
</div>
<div class="footer">
<p style="font-size:25px">📜 <b>Links: </b>
<a href="https://github.com/novus-neurons"><i class="fa-brands fa-github"></i></a>
<a href="https://www.instagram.com/novus_neurons/"><i class="fa-brands fa-instagram"></i></a>
<!-- [<a href = "insert your link here">Twitter</a>]</p> -- Redundant- Do NOT alter.-->
<p style="font-size:25px">💌<b>Contact:</b> <a href="mialto:[email protected]"><i
class="fa-solid fa-envelope"></i></a>
<div class="content">
<h3>This is the collection of some of my fav. content creators across the globe..</h3>
<h6 style="text-align: left;">This collection is made by students.How to contribute: You can visit the GitHub repo
<a href="https://github.com/gamedevCloudy/content-club">here.</a> Contribution instructions have been provided
there.</h6>
<hr>
<p>Creator List: </p>
<table>
<tr class="light">
<th>Site Name</th>
<th>Description</th>
<th>Category</th>
<th>Link</th>
</tr>
<tr>
<td>M.S.Dhoni</td>
<td>LEGENDARY PLAYER</td>
<td>INDIAN CRICKETER</td>
<td><a href="https://en.wikipedia.org/wiki/MS_Dhoni" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Bhuvan Bam</td>
<td>A youtube content creator.</td>
<td>Actor</td>
<td><a href="https://en.wikipedia.org/wiki/Bhuvan_Bam" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Tabbes</td>
<td>Is an YouTuber in the field of animation </td>
<td>digital artist</td>
<td><a href="https://www.youtube.com/c/Tabbes" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Free code camp</td>
<td>gives free courses to learn various languages.</td>
<td>Studies</td>
<td><a href="https://en.wikipedia.org/wiki/FreeCodeCamp" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Matt D'Avella</td>
<td>He's just a minimal person with great vibes. Really good filmaker.</td>
<td>Productivity and Studies</td>
<td><a href="https://www.youtube.com/c/MattDAvella" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Linus tech tips</td>
<td>Founded by Linus sebastian, best technology videos for enthusiasts.</td>
<td>PC, Smartphones, Gadgets and Technology</td>
<td><a href="https://www.youtube.com/channel/UCXuqSBlHAE6Xw-yeJA0Tunw" target="_blank">Visit</a></td>
</tr>
<tr>
<td>GMTK</td>
<td>Game Maker's Toolkit - a must to learn game design.</td>
<td>Game Design</td>
<td><a href="https://youtube.com/c/MarkBrownGMT" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Austin Evans</td>
<td>From gaming PCs to smartphones, Austin reviews anything and everything about tech.</td>
<td>Technology review </td>
<td><a href="https://www.youtube.com/c/austinevans" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Rohit Sharma</td>
<td>Proffesional Cricket Player.</td>
<td>Cricketer</td>
<td><a href="" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Tanmay Bhai</td>
<td>YouTuber, comedian, gamer, vlogger and package of talents</td>
<td>Comedy</td>
<td><a href="https://www.youtube.com/channel/UC0rE2qq81of4fojo-KhO5rg" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Scout </td>
<td>He is a Professional Gamer,Content creater, has participated in International Championships and won</td>
<td>Gamer </td>
<td><a href="https://www.youtube.com/c/sc0utOP" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Ranveer Allahbadia</td>
<td>He's a fitness freak with great spiritual knowledge.He also host podcasts. </td>
<td>Fitness and Knowledge</td>
<td><a href="https://www.youtube.com/c/RanveerAllahbadia" target="_blank">Visit</a></td>
</tr>
=======
</tr>
<tr>
<td>SkRossi</td>
<td>The Face of Indian Valorant. </td>
<td>Esports</td>
<td><a href="https://www.youtube.com/c/SkRossi" target="_blank">Visit</a></td>
<tr>
<td>larry fink</td>
<td>Owns richest company in the world</td>
<td>Global Hedge Fund</td>
<td><a href="https://www.blackrock.com/corporate" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Kushal Mehra</td>
<td>He discusses politics and has great spiritual knowlege about hinduism.</td>
<td>politics and spirituality</td>
<td><a href="https://www.youtube.com/c/TheC%C4%81rv%C4%81kaPodcast " target="_blank">Visit</a></td>
</tr>
<tr>
<td>Abhishek Aute</td>
<td>is a Web developer </td>
<td>Student</td>
<td><a href="https://github.com/Abhi2820 " target="_blank">Visit my GitHub</a></td>
</tr>
<tr>
<td>Ankur Warikoo</td>
<td>Ankur Warikoo is an Indian YouTuber, entrepreneur and an author. </td>
<td>Skill development</td>
<td><a href="https://www.youtube.com/c/warikoo" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Average Jomas</td>
<td>valorant champions tournament player and content creator</td>
<td>gamer</td>
<td><a href="https://www.youtube.com/c/AverageJonas/about" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Rohit Sharma</td>
<td>Indian Cricketer</td>
<td>Sports</td>
<td><a href="https://en.wikipedia.org/wiki/Rohit_Sharma" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Elon Musk</td>
<td>Is the Richest Man in the World</td>
<td>Business</td>
<td><a href="https://en.wikipedia.org/wiki/Elon_Musk" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Dhinchak Pooja</td>
<td>She is a songwriter creator and singer . also have launched many singles successfully</td>
<td>Content Creator and Singer</td>
<td><a href="https://www.youtube.com/c/dhinchakpooja/featured " target="_blank">Visit</a></td>
</tr>
<tr>
<td>Sandeep Maheshwari</td>
<td>motivates and guide all agegroup people</td>
<td>Youtuber</td>
<td><a href="https://www.youtube.com/c/SandeepSeminars/featured" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Harry</td>
<td>youtuber</td>
<td>coder</td>
<td><a href=" https://www.youtube.com/c/CodeWithHarry/featured" target="_blank">Visit</a></td>
</tr>
<tr>
<td>mostlysane</td>
<td>one of the first and best content creator in comedy genre </td>
<td>youtuber</td>
<td><a href="https://www.youtube.com/results?search_query=mostlysane" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Naval Ravikant</td>
<td> co-founder, chairman and former CEO of AngelList</td>
<td>entrepreneur and investor</td>
<td><a href="https://nav.al/ " target="_blank">Visit</a></td>
<!-- add link here -->
</tr>
<tr>
<td>Rohit Sharma</td>
<td>Indian Cricketer</td>
<td>Sports</td>
<td><a href="https://en.wikipedia.org/wiki/Rohit_Sharma" target="_blank">Visit</a></td>
<!-- add link in href -->
</tr>
<tr>
<td>flying beast</td>
<td>he is a vlogger, a engineer(IIT kharagpur), a pilot(Air-Asia) and a lawyer(DU)</td>
<td>he is a vlogger, an engineer, a pilot, fitness model</td>
<td><a href="https://www.youtube.com/c/FlyingBeast320" target="_blank">Visit</a></td>
</tr>
<tr>
<td>bb ki wines</td>
<td>he creates funny videos</td>
<td>youtuber</td>
<td><a href="https://www.youtube.com/c/BBKiVines" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Hritik roshan</td>
<td>Most handsome guy in bollywood, entrepreneur</td>
<td>Actor</td>
<td><a
href="https://www.bing.com/search?q=hrithik+roshan&cvid=8cd37384ff734d01950f8a040113358a&aqs=edge..69i57j46j0l7.2166j0j1&FORM=ANNTA1&PC=U531"
target="_blank">Visit</a></td>
<!-- add link here -->
</tr>
<tr>
<td>Grigori Rasputin</td>
<td>Grigori Yefimovich Rasputin was a Russian mystic and self-proclaimed holy man who befriended the family of
Nicholas II, the last Emperor of Russia, thus gaining considerable influence in late Imperial Russia.</td>
<td>Monk</td>
<td><a href=" https://www.youtube.com/watch?v=4dEf1ep3O9I" target="_blank">Visit</a></td>
</tr>
<tr>
<td>SEN TENZ</td>
<td>valorent champion</td>
<td>gamer</td>
<td><a href="https://www.youtube.com/c/TenZ/about " target="_blank">Visit</a></td>
</tr>
<tr>
<td>Ankur Warikoo</td>
<td>Ankur Warikoo is an Indian YouTuber,entrepreneur and an author.He is former CEO & co-founder of
nearbuy.com</td>
<td>Finance,Educator</td>
<td><a href="https://ankurwarikoo.com" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Cristiano Ronaldo</td>
<td>Portuguese Footballer</td>
<td>Sports</td>
<td><a href=" https://en.wikipedia.org/wiki/Cristiano_Ronaldo" target="_blank">Visit</a></td>
<!-- add link in href -->
</tr>
<tr>
<td>Major gaurav choudhary</td>
<td>Army Major</td>
<td>Indian Army</td>
<td><a href=" https://labuwiki.com/gaurav-chaudhary/?amp" target="_blank">Visit</a></td>
<!-- add link in href -->
</tr>
<tr>
<td> albert einstein</td>
<td>german american physicist known for his work in the modern physics predominantly known for contribuntions
in theory of relativity and space time dilation </td>
<td>scientist</td>
<td><a href="https://en.wikipedia.org/wiki/Albert_Einstein" target="_blank">Visit</a></td>
<!-- add link here -->
</tr>
<tr>
<td>Carryminati </td>
<td>He is a Youtuber, Gamer,Content creater,Music producer, has alots of roasting content over his youtube
channel</td>
<td>Entertainment bina kisi bakchodi ke </td>
<td><a href="https://www.youtube.com/c/AddictedA1" target="_blank">Visit</a></td>
</tr>
<tr>
<td>MSK </td>
<td>A travel vlogger who explore's places and shares his experiences with his subscribers </td>
<td>Travel Vlogger </td>
<td><a href="https://www.youtube.com/c/MSKvlogs/videos" target="_blank">Visit</a></td>
</tr>
<tr>
<td>vishal Tiwari </td>
<td> this man is best chemistry teacher as per my experience</td>
<td>teacher </td>
<td><a href="https://youtu.be/vd-m-0KkWKU" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Mythpat </td>
<td>he is youtuber ,gamer. </td>
<td>gamer</td>
<td><a href="https://youtu.be/rRyukGKACnc" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Jimmy Donaldson</td>
<td>he often shares videos where he donates money to a cause.</td>
<td>youtuber</td>
<td><a href="https://www.youtube.com/user/MrBeast6000" target="_blank">Visit</a></td>
</tr>
<tr>
<td>virat Kohli</td>
<td> cricketer</td>
<td>sport</td>
<td><a href=" https://en.wikipedia.org/wiki/Virat_Kohli" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Sushant singh rajput</td>
<td>Physic lover, dancer</td>
<td>Actor hero </td>
<td><a href="https://www.youtube.com/watch?v=yI9U4W76icg" target="_blank">Visit</a></td>
<!-- add link here -->
</tr>
<tr>
<td>Gigl </td>
<td>His aim is to develop great ideas that leads to great life</td>
<td>youtuber </td>
<td><a href="https://www.youtube.com/c/GREATIDEASGREATLIFE/about" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Hitesh Choudhary </td>
<td>he is entrepreneur, passionated coder and great teacher also.</td>
<td>he is online coding teacher</td>
<td><a herf="https://www.youtube.com/c/HiteshChoudharydotcom" target=" balnk">visit</a></td>
</tr>
<tr>
<td>vijay deverakonda </td>
<td>Actor, entrepreneur </td>
<td>Entertainment </td>
<td><a href="https://www.youtube.com/results?search_query=rowdy+vijay+devarakonda" target="_blank">Visit</a>
</td>
</tr>
<tr>
<td>Preston Arsement</td>
<td>He is mostly known for his Minecraft gameplay, but also plays Fortnite and Roblox. </td>
<td>gamer</td>
<td><a href="https://www.youtube.com/c/PrestonPlayz" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Sandeep Maheshwari </td>
<td>He is a Professional speacker,content creater</td>
<td>Motivational speacker </td>
<td><a href="https://www.youtube.com/c/SandeepSeminars" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Pewdiepie </td>
<td>Felix Arvid Ulf Kjellberg, better known as PewDiePie, is a Swedish YouTuber known for his Let's Play
videos and comedic formatted videos and shows.</td>
<td>Youtuber</td>
<td><a href="https://www.youtube.com/user/pewdiepie" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Viswanathan Anand</td>
<td>5 times world chess champion</td>
<td>Chess Player</td>
<td><a href="https://en.wikipedia.org/wiki/Viswanathan_Anand" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Virat Kohli</td>
<td>Former Indain Cricket Team Captain and World's Best Batsman</td>
<td>Cricket Player</td>
<td><a href=https://en.wikipedia.org/wiki/Virat_Kohli target="_blank">Visit</a></td>
</tr>
<tr>
<td>Rohit Sharma</td>
<td>Indian cricketer, Ro-hit, Captain</td>
<td>Cricketer</td>
<td><a
href="https://www.bing.com/search?q=rohit+sharma&qs=SC&pq=roshit+s&sc=10-8&cvid=4FEFB8D157FF4ADA92EDB0137BF4460D&FORM=QBRE&sp=1"
target="_blank">Visit</a></td>
</tr>
<tr>
<td>ROHIT SHARMA</td>
<td>Rohit ka fom Bharat ke heet mai hai!</td>
<td>#45</td>
<td><a href="https://en.wikipedia.org/wiki/Rohit_Sharma" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Mumbiker nikhil </td>
<td>A travel vlogger who explore's places and shares his experiences with his subscribers </td>
<td>Travel Vlogger </td>
<td><a href="https://www.youtube.com/c/MumbikerNikhil/videos" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Srushti Tawde</td>
<td>she is a good rapper ,i like the content's that write by her or sing by her,you also have to watch and
listen her. </td>
<td> rapper</td>
<td><a href="https://www.youtube.com/watch?v=mV0e6XE7Vj8" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Code with harry</td>
<td>He uploads free coding content on youtube and is relly going to be a great help for anyone starting on
coding.
</td>
<td> Youtuber</td>
<td><a href="https://www.youtube.com/c/CodeWithHarry" target="_blank">Visit</a></td>
</tr>
<tr>
<td>FitMuscle TV</td>
<td>Muscle TV is your one stop for all fitness related queries.</td>
<td>About Fitness Physic</td>
<td><a href="https://www.youtube.com/channel/UCn8Fiasqd-6G3A6AS322mZA/featured" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Micahel Jordan </td>
<td>Greatest basketball player of all time </td>
<td>6 time NBA champion </td>
<td><a
href="https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjEpqnAqMv6AhV41jgGHSbTAtoQFnoECBgQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMichael_Jordan&usg=AOvVaw0zXYXAzN7IwNcUs8BkG9pP"
target="_blank">Visit</a></td>
</tr>
=======
<tr>
<td>Mark Rober</td>
<td>Former NASA and Apple engineer. Current YouTuber and friend of science.</td>
<td>Engineering</td>
<td><a href="https://www.youtube.com/c/MarkRober" target="_blank">Visit</a></td>
<tr>
<td> sandeep maheshwari </td>
<td>A motivational speaker who shares his experiences with his subscribers </td>
<td>motivational speaker </td>
<td><a href="https://youtu.be/kBo3ipDEH6k" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Lionel Messi</td>
<td>Agentine Footballer</td>
<td>Sports</td>
<td><a href="https://en.wikipedia.org/wiki/Lionel_Messi" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Priyanka Chopra</td>
<td>Priyanka Chopra is actress, model, producer and miss world 2000 pageant. </td>
<td>International actress</td>
<td><a href="https://en.wikipedia.org/wiki/Priyanka_Chopra" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Felix Arvid Ulf Kjellberg</td>
<td>he plays horror games and reacts wildly to what's happening to the screen</td>
<td>youtuber</td>
<td><a href="https://www.youtube.com/user/pewdiepie" target="_blank">Visit</a></td>
</tr>
<tr>
<td>MS Dhoni</td>
<td>Indian former professional cricketer who was captain of the Indian national cricket team</td>
<td>cricketer</td>
<td><a href="https://en.wikipedia.org/wiki/MS_Dhoni" target="_blank">Visit</a></td>
</tr>
<tr>
<td>BBKiVines </td>
<td>a content creators</td>
<td>content creators</td>
<td><a href="https://www.youtube.com/c/BBKiVines/videos" target="_blank">Visit</a></td>
</tr>
<tr>
<td>ntkid </td>
<td> troller </td>
<td>youtuber </td>
<td><a href="https://youtu.be/Gmv6QMVxWTU" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Pankaj Tripathi</td>
<td>Pankaj Tripathi is an Indian actor who appears in Hindi films.</td>
<td>Actor</td>
<td><a href="https://en.wikipedia.org/wiki/Pankaj_Tripathi" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Logan Paul </td>
<td>He is god to me I have no words </td>
<td>Youtuber/Podcaster/Boxer </td>
<td><a href="https://www.youtube.com/c/loganpaulvlogs" target="_blank">Visit</a></td>
</tr>
<tr>
<td>LOVE BABBAR</td>
<td>He is a Graduate Student from NSUT And a Content creator and make daily coding videso</td>
<td>Vloger & Coding</td>
<td><a href="https://www.youtube.com/results?search_query=love+babbar" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Programming with Mosh</td>
<td>This C++ tutorial for beginners shows you how to get started with C++ quickly. Learn C++ basics in 1 hour
and get ready to learn more!. </td>
<td>Coding Tutorial</td>
<td><a href="https://youtu.be/ZzaPdXTrSb8" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Jenny's lectures CS/IT NET&JRF</td>
<td>Jenny’s Lectures CS/IT NET&JRF is a Free YouTube Channel providing Computer Science / Information
Technology / Computer-related tutorials including NET & JRF Coaching Videos, GATE Coaching Videos, UGC NET,
NTA NET, JRF, BTech, MTech, Ph.D., tips and other helpful videos for Computer Science / Information
Technology students. Teaching Computer Science in Informal Space. </td>
<td>Programming/Coding Tutorial</td>
<td><a href="https://www.youtube.com/c/JennyslecturesCSITNETJRF">Visit</a></td>
</tr>
<!-- pankajs22 -->
<tr>
<td>Akshat Shristava</td>
<td>talks about finance and investing.</td>
<td>finance</td>
<td class="links"><a href="https://www.youtube.com/c/AkshatShrivastavaZayn" target="_blank"><i
class="fa-sharp fa-solid fa-square-arrow-up-right"></i></a></td>
</tr>
<tr>
<td>Tech Burner</td>
<td>New technologies introduction</td>
<td>Tech channel</td>
<td><a href="https://www.youtube.com/c/TechBurner">Visit</a></td>
</tr>
</table>
<br>
<br>
<hr>
</div>
<div class="footer">
<p>📜 <b>Links:</b>
[<a href="https://github.com/novus-neurons">GitHub</a>]
[<a href="https://www.instagram.com/novus_neurons/">Instagram</a>]
<!-- [<a href = "insert your link here">Twitter</a>]</p> -- Redundant- Do NOT alter.-->
<p>💌<b>Contact:</b> [<a href="mialto:[email protected]">Gmail</a>]
<hr>
<p class="copyright">Copyright © Novus Neurons (2022). Best Viewed With
<a id="anylink" href="https://anybrowser.org/campaign/"><b>Any Browser</b></a>
[<a id="themebutton" onclick="SwitchTheme()">Light Mode</a>]
</p>
<p style="text-align:center">
<h6> Made with refernce to: [<a href="https://aayushakacloudy.is-a.dev/online-tools" target="_blank">Aayush's
Website</a>] </h6>
<br> PS. Drink Your <a href="https://demonkingswarn.is-a.dev/" target="_blank">milk</a> and have a <a
href="https://aayushakacloudy.is-a.dev/" target="_blank">banana.</a> </h6>
</p>
</div>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>
=======
</html>
=======
=======
<!DOCTYPE HTML>
<html>
<head>
<title>Content Club</title>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="description" content="This is Novous Neuron's Content Club.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<a href="https://novous-neurons.github.io/" class="page-heading">
<h1>content club 🤳🏻</h1>
</a>
<hr>
<div class="content">
<h3>This is the collection of some of my fav. content creators across the globe..</h3>
<h6 style="text-align: left;">This collection is made by students.How to contribute: You can visit the GitHub repo
<a href="https://github.com/gamedevCloudy/content-club">here.</a> Contribution instructions have been provided
there.</h6>
<hr>
<p>Creator List: </p>
<table>
<tr class="light">
<th>Site Name</th>
<th>Description</th>
<th>Category</th>
<th>Link</th>
</tr>
<tr>
<td>Ali Abdaal</td>
<td>Doctor turned into full time content creators, really enjoable.</td>
<td>Productivity</td>
<td><a href="https://www.youtube.com/c/aliabdaal" target="_blank">Visit</a></td>
</tr>
<br>
<tr>
<td>Thomas Frank</td>
<td>Also a medical student, Frank creates content on Productivity and student lifestyle.</td>
<td>Productivity and Studies</td>
<td><a href="https://www.youtube.com/c/Thomasfrank" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Matt D'Avella</td>
<td>He's just a minimal person with great vibes. Really good filmaker.</td>
<td>Productivity and Studies</td>
<td><a href="https://www.youtube.com/c/MattDAvella" target="_blank">Visit</a></td>
</tr>
<tr>
<td>GMTK</td>
<td>Game Maker's Toolkit - a must to learn game design.</td>
<td>Game Design</td>
<td><a href="https://youtube.com/c/MarkBrownGMT" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Austin Evans</td>
<td>From gaming PCs to smartphones, Austin reviews anything and everything about tech.</td>
<td>Technology review </td>
<td><a href="https://www.youtube.com/c/austinevans" target="_blank">Visit</a></td>
<!-- add link here -->
</tr>
<tr>
<td>template</td>
<td>description goes here.</td>
<td>template Category</td>
<td><a href="" target="_blank">Visit</a></td>
<!-- add link here -->
=======
=======
</tr>
<tr>
<td>king kohli</td>
<td>he is in indian cricket team. </td>
<td>Fitness and Knowledge</td>
<td><a href="https://www.youtube.com/c/RanveerAllahbadia" target="_blank">Visit</a></td>
</tr>
<tr>
<td>larry fink</td>
<td>Owns richest company in the world</td>
<td>Global Hedge Fund</td>
<td><a href="https://www.blackrock.com/corporate" target="_blank">Visit</a></td>
<!-- add link here -->
<tr>
</tr>
<td>sandeep maheshwari</td>
<td>gives motivational speeches</td>
<td>motivational speaker</td>
<td><a href="https://www.sandeepmaheshwari.com/ " target="_blank">Visit</a></td>
=======
<td>aman dhattarwal</td>
<td>He is a motivational speaker and also educationalist. </td>
<td>youtuber</td>
<td><a href="https://youtu.be/wZ59ZgcuChY" target="_blank">Visit</a></td>
=======
<td>ALAKH PANDEY</td>
<td>TEACHER</td>
<td>study</td>
<td><a
href=" https://www.youtube.com/redirect?event=channel_banner&redir_token=QUFFLUhqbjQ4WmM2QXExWEtldWdMRkRiV1BDZGxaWkl3QXxBQ3Jtc0tualdfV1pRMi12c3V3azdsanRMWFRfWmN1cU1KQUhzRnZ6UXFGdU4xZ3YyRzhTUGc0eXFid3VxRUtxZzMyYUplblhUUlVWRjVyX1R2aTBOeld3S1ZfUmVzbndpMF9IWUQyMXQ2U0RGbEdyWHh2WjQzQQ&q=https%3A%2F%2Ft.me%2FPhysics_Wallah_Official_Channel"
target="_blank">Visit</a></td>
=======
<td>Ben Afflek</td>
<td>I am Batman</td>
<td>Entertainment</td>
<td><a href=" " target="_blank">Visit</a></td>
=======
<td>Ankur warikoo</td>
<td>public speaker</td>
<td>influencer</td>
<td><a href="https://www.youtube.com/results?search_query=warikoo " target="_blank">Visit</a></td>
<td>Rohit Sharma</td>
<td>Indian Cricketer</td>
<td>Sports</td>
<td><a href="https://en.wikipedia.org/wiki/Rohit_Sharma" target="_blank">Visit</a></td>
<!-- add link in href -->
</tr>
</table>
<br>
<br>
<hr>
</div>
<div class="footer">
<p>📜 <b>Links:</b>
[<a href="https://github.com/novus-neurons">GitHub</a>]
[<a href="https://www.instagram.com/novus_neurons/">Instagram</a>]
<!-- [<a href = "insert your link here">Twitter</a>]</p> -- Redundant- Do NOT alter.-->
<p>💌<b>Contact:</b> [<a href="mialto:[email protected]">Gmail</a>]
<hr>
<p class="copyright">Copyright © Novus Neurons (2022). Best Viewed With
<a id="anylink" href="https://anybrowser.org/campaign/"><b>Any Browser</b></a>
[<a id="themebutton" onclick="SwitchTheme()">Light Mode</a>]
</p>
<p style="text-align:center">
<h6> Made with refernce to: [<a href="https://aayushakacloudy.is-a.dev/online-tools" target="_blank">Aayush's
Website</a>] </h6>
<br> PS. Drink Your <a href="https://demonkingswarn.is-a.dev/" target="_blank">milk</a> and have a <a
href="https://aayushakacloudy.is-a.dev/" target="_blank">banana.</a> </h6>
</p>
</div>
<script type="text/javascript" src="./script.js"></script>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<body style="background-color:#F0F8FF;">
<title>Content Club</title>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="description" content="This is Novous Neuron's Content Club.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<a href="https://novous-neurons.github.io/" class="page-heading">
<h1>Content Club 🤳🏻</h1>
</a>
<hr>
<div class="content">
<h3>This is the collection of some of my fav. content creators across the globe..</h3>
<h6 style="text-align: left;">This collection is made by students.How to contribute: You can visit the GitHub repo
<a href="https://github.com/gamedevCloudy/content-club">here.</a> Contribution instructions have been provided
there.
</h6>
<hr>
<p>Creator List: </p>
<table>
<tr class="light">
<th>Site Name</th>
<th>Description</th>
<th>Category</th>
<th>Link</th>
<h3>This is the collection of some of my fav. content creators across the globe..</h3>
<h6 style="text-align: left;">This collection is made by students.How to contribute: You can visit the GitHub
repo <a href="https://github.com/gamedevCloudy/content-club">here.</a> Contribution instructions have been
provided there.</h6>
<hr>
<p>Creator List: </p>
<table>
<tr class="light">
<th>Site Name</th>
<th>Description</th>
<th>Category</th>
<th>Link</th>
</tr>
<tr>
<td>SACHIN TENDULKAR</td>
<td>LEGENDARY PLAYER</td>
<td>INDIAN CRICKETER</td>
<td><a href="https://en.wikipedia.org/wiki/Sachin_Tendulkar" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Ali Abdaal</td>
<td>Doctor turned into full time content creators, really enjoable.</td>
<td>Productivity</td>
<td><a href="https://www.youtube.com/c/aliabdaal" target="_blank">Visit</a></td>
</tr>
<br>
<tr>
<td>Thomas Frank</td>
<td>Also a medical student, Frank creates content on Productivity and student lifestyle.</td>
<td>Productivity and Studies</td>
<td><a href="https://www.youtube.com/c/Thomasfrank" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Matt D'Avella</td>
<td>He's just a minimal person with great vibes. Really good filmaker.</td>
<td>Productivity and Studies</td>
<td><a href="https://www.youtube.com/c/MattDAvella" target="_blank">Visit</a></td>
</tr>
<tr>
<td>Linus tech tips</td>
<td>Founded by Linus sebastian, best technology videos for enthusiasts.</td>
<td>PC, Smartphones, Gadgets and Technology</td>
<td><a href="https://www.youtube.com/channel/UCXuqSBlHAE6Xw-yeJA0Tunw" target="_blank">Visit</a></td>
</tr>
<tr>