Thanks a bunch for filling that out. It means a lot to us, just like you do! We really appreciate you giving us a moment of your time today. Thanks for being you.
25 |├── .vscode └── settings.json ├── Photos ├── close.png ├── gallery_bg.jpg ├── gallery_bg1.jpg ├── group_photo.jpg ├── loading.gif ├── next.png ├── pic1.jpeg ├── pic10.jpg ├── pic11.JPG ├── pic12.JPG ├── pic13.JPG ├── pic14.JPG ├── pic14_copy.jpg ├── pic15.JPG ├── pic15_copy.jpg ├── pic2.jpeg ├── pic3.jpeg ├── pic4.jpeg ├── pic5.jpeg ├── pic6.jpg ├── pic7.png ├── pic8.jpg ├── pic_15.JPG ├── pic_16.JPG ├── pic_17.JPG ├── pic_18.JPG └── prev.png ├── README.md ├── contact_us.html ├── css ├── contact.css ├── flippingCard.css ├── gallery.css ├── lightbox.min.css ├── styles.css └── teams.css ├── events.html ├── events1.html ├── gallery.html ├── image ├── istockphoto-1162440985-170667a.jpg ├── leaves1.png ├── leaves2.png ├── leaves3.png ├── leaves4.png ├── new (1).png ├── new (2).png ├── new (3).png ├── new (4).png ├── one (1).jpg ├── one (2).png ├── one (3).png ├── one (4).jpg ├── star.png └── trek.png ├── images ├── 84yaPic.jpeg ├── AaminiPic.jpeg ├── Abhay_kumar_singh.jpg ├── AbhishekSinghPic.jpeg ├── Abhishek_mishra.jpg ├── AkanshaPic.jpeg ├── Akash_pathak.jpg ├── Akriti_raj.jpg ├── Aman_singh.jpg ├── AniketYadavPic.jpeg ├── Aniket_niranjan.jpg ├── Ankit_tiwari.jpg ├── AnkitaPic.jpeg ├── Anmol_pandey.jpg ├── Anshika_maurya.jpg ├── Anshika_sharma.jpg ├── Anurag_gupta.jpeg ├── AnushkaPic.jpeg ├── Aryan_singh.jpg ├── AshitSirPic.jpeg ├── Ashvini_rai.jpg ├── AsutoshPic.jpeg ├── CodeaholicShubDp.jpg ├── DivyanshSir.jpeg ├── Divyanshu.jpeg ├── DivyanshuSir.jpeg ├── Eshika_verma.jpg ├── GargiSaraMam.jpeg ├── HarshitPic.jpeg ├── HarshitSirPic.jpeg ├── HarshvarshanPic.jpeg ├── Hashir_waqar.jpg ├── JyotiPic.jpg ├── KushagraSirPic.jpeg ├── Manikant_kharwar.jpg ├── Mayank_rai.jpg ├── MillerPic.jpeg ├── Mohit.jpeg ├── Muzammil_ali.jpg ├── NSS-logo.png ├── NamitaMam.jpg ├── NehaRoshniPic.jpeg ├── Nishtha_singh.jpg ├── Priya_patel.jpg ├── Priyanshu_puri.jpg ├── Rajneesh.jpeg ├── Ritika_yadav.jpeg ├── Rohan_kumar.jpg ├── SakshiPandeyPic.jpeg ├── SaloniPic.jpeg ├── Satwick_verma.jpg ├── ShatakshiMamPic.jpeg ├── Shiva.jpeg ├── Shivam_singh.jpg ├── Shivendra_chaurasia.jpg ├── ShreyaGuptaPic.jpeg ├── ShreyaPic.jpeg ├── Shreya_gupta.jpg ├── Shruti_pandey.jpg ├── ShubhankarPic.jpeg ├── ShubhankarPic.jpg ├── Sudhir_mishra.jpg ├── SurajPic.jpeg ├── UttkarshPic.jpeg ├── VaibhavPic.jpeg ├── Vaibhav_srivastava.jpg ├── Yash_srivastava.jpg ├── logo.jpeg ├── mmm.png ├── mmmut.png ├── one.jpeg ├── two.jpeg ├── unnamed.jpg ├── user.jpg └── vc.jpg ├── index.html ├── js └── lightbox.min.js ├── scripts.js ├── teams.html ├── teams1.html └── thanks.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Photos/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/close.png -------------------------------------------------------------------------------- /Photos/gallery_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/gallery_bg.jpg -------------------------------------------------------------------------------- /Photos/gallery_bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/gallery_bg1.jpg -------------------------------------------------------------------------------- /Photos/group_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/group_photo.jpg -------------------------------------------------------------------------------- /Photos/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/loading.gif -------------------------------------------------------------------------------- /Photos/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/next.png -------------------------------------------------------------------------------- /Photos/pic1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic1.jpeg -------------------------------------------------------------------------------- /Photos/pic10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic10.jpg -------------------------------------------------------------------------------- /Photos/pic11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic11.JPG -------------------------------------------------------------------------------- /Photos/pic12.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic12.JPG -------------------------------------------------------------------------------- /Photos/pic13.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic13.JPG -------------------------------------------------------------------------------- /Photos/pic14.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic14.JPG -------------------------------------------------------------------------------- /Photos/pic14_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic14_copy.jpg -------------------------------------------------------------------------------- /Photos/pic15.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic15.JPG -------------------------------------------------------------------------------- /Photos/pic15_copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic15_copy.jpg -------------------------------------------------------------------------------- /Photos/pic2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic2.jpeg -------------------------------------------------------------------------------- /Photos/pic3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic3.jpeg -------------------------------------------------------------------------------- /Photos/pic4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic4.jpeg -------------------------------------------------------------------------------- /Photos/pic5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic5.jpeg -------------------------------------------------------------------------------- /Photos/pic6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic6.jpg -------------------------------------------------------------------------------- /Photos/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic7.png -------------------------------------------------------------------------------- /Photos/pic8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic8.jpg -------------------------------------------------------------------------------- /Photos/pic_15.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic_15.JPG -------------------------------------------------------------------------------- /Photos/pic_16.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic_16.JPG -------------------------------------------------------------------------------- /Photos/pic_17.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic_17.JPG -------------------------------------------------------------------------------- /Photos/pic_18.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/pic_18.JPG -------------------------------------------------------------------------------- /Photos/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeaholic-shub/NSS-MMMUT/1cc7e541475ff6f2f2a8d64b682bdda2ee60828f/Photos/prev.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NSS-MMMUT ❤️🔥 2 |  3 | 4 |
92 | 93 |
Shubhankar Poddar 💻 |
96 | Jyoti Kumari 💻 |
97 |
Shubhankar Poddar 💻 |
112 | Jyoti Kumari 💻 |
113 | Aashutosh Anand Tiwari 💻 |
114 | Altyon-Get 💻 |
115 | Aniket Chaurasia 💻 |
116 | Arpit Jain 💻 |
117 | Nitesh Rawat 💻 |
118 |
119 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
134 | 135 |
This event was organised to give credit to those unsung heroes of India contributing to the society in all possible manners but were not recognized. Therefore, to appreciate their works and ensoul the society our team conducted this event.
133 | View Details 134 |NSS team released their new logo, promo video including message by Prof. B.K. Pandey sir (CSA Chairman) and Dr. Awadhesh Kumar sir(NSS Coordinator).
144 | View Details 145 |This event provided an open platform to share inspirations of our life. It could be an object or a person or may be a fictional character. The event was free of cost but a collection of priceless emotions. We admired their participation. We received entries from 24 colleges.
155 | View Details 156 |The united nations encourages people to "celebrate the day by spreading compassion, kindness and hope in the face of the (COVID-19) pandemic
166 | View Details 167 |On national cancer awareness day, people are encouraged to report to government hospitals, CGHS and municipal clinics for free screening.
177 | View Details 178 |National Education Day of India is celebrated on 11 November every year. We on National Education Day, aims at making people aware of the importance of education and literacy.
188 | View Details 189 |Educate children for a better future. 199 | They study today and they create tomorrow. NSS MMMUT wishes a heartful of good wishes on Children's Day.
200 | View Details 201 |The day aims to raise awareness about the hazardous effects of Air Pollution and the ways to control them. It also aims to educate people about the importance of Pollution Control act, which put a check on Pollution causing industries. NSS MMMUT pays homage to the deceased of Bhopal and aims to create awareness about air pollution.
211 | View Details 212 |On the event of Indian Navy Day, let us thank and salute the warriors in white to their commitment and assurance.They are pleased to serve the country, it’s kin, it’s coasts and all frontiers.
222 | View Details 223 | Our flag is more than just cloth and ink. It is a universally recognized symbol that stands for liberty and freedom. It is marked by the blood of those who died defending it.
233 | NSS MMMUT pays homage to the valiant heroes of India.
234 |
Jai Hind! Jai Bharat!
Agriculture not only gives riches to a nation, but the only riches she can call her own.
246 | View Details 247 |The central objective of this day is to spread awareness among the youth and motivate them to be the building block of the nation through the teachings and ideology of Swami Vivekanand.
257 | View Details 258 |Right now, we only fill our tanks when they are on "empty". Developing our awareness helps us to start recognize signs and symptoms when we are feeling off. NSS MMMUT provided an opportunity to grab and be more aware about adverse effect of poor mental health in student life by Dr. Sandeep Atre.
133 | View Details 134 |NSS MMMUT hosted Pararth , a donation drive, to bring about the feeling of giving and help those in need. Pararth dedicated to upholding its motto Incredible Donation, Incredible You and raising sense of charity in individual.
144 | View Details 145 |The love of one's country is splendid thing. But why should love stop at border? From the memories of the India Gate to the bravery of Netaji Shubash Chandra Bose, from the glory of Amar Jawan Jyoti to the greatness of war memorial. To test the knowledge regarding the above mentioned topic, we organized an online quiz.
155 | View Details 156 |Camp on the 31st December 2021 at MMMUT Health Center. The essential contribution that the blood donor made by taking the initiative and coming out of the crowd and kept the world pulsating by saving lives and improving others health.
166 | View Details 167 |With a broader aim to work for the welfare of society, we work on the idea of social welfare on this Diwali in the real sense of celebrating it with the student of Malaviya Shiksha Niketan to give them joy and bring smile on their faces.
177 | View Details 178 |On the ocassion of 51st NSS Day , NSS MMMUT organised annual day celebration where whole team came together to renew 189 | their commitment to the NSS motto, "Not me but you" on 28 September 2021.
190 | View Details 191 |Team NSS MMMUT paid tribute to the exemplary engineer Sir M. Visvesvaraya on his birth anniversary.
201 | View Details 202 |Janmashtami, also known as Gokulashtami or Krishnashtami, is an annual Hindu festival that signs the birth 212 | anniversary of Lord Krishna, the eighth avatar of Lord Vishnu. On the next day of Janmashtami, people celebrate 213 | the festival of Dahi Handi.
214 | View Details 215 |For India, 15th August is a day of its re-birth, a new start. At the midnight of 15 August 1947, the British rulers 225 | handed over the country back to its Indian leaders, ending a remarkable struggle that lasted years.
226 | View Details 227 |The prime purpose of celebrating Youth day is to highlight the importance of youths and various cultural and legal issues related with them.
237 | View Details 238 |201 | The National Service Scheme (NSS) is an Indian government-sponsored 202 | public service program conducted by the Ministry of Youth Affairs[1] 203 | and Sports of the Government of India. Popularly known as NSS, the 204 | scheme was launched in Gandhiji's Centenary year in 1969. Aimed at 205 | developing student's personality through community service, NSS is a 206 | voluntary association of young people in Colleges, Universities and 207 | at +2 level working for a campus-community (esp. Villages) linkage. 208 |
209 |211 | The programme aims to instill the idea of social welfare in 212 | students, and to provide service to society without bias. NSS 213 | volunteers work to ensure that everyone who is needy gets help to 214 | enhance their standard of living and lead a life of dignity. In 215 | doing so, volunteers learn from people in villages how to lead a 216 | good life despite a scarcity of resources. it also provides help in 217 | natural and man-made disasters by providing food, clothing and first 218 | aid to the disaster's victims. 219 |
220 |Thanks a bunch for filling that out. It means a lot to us, just like you do! We really appreciate you giving us a moment of your time today. Thanks for being you.
25 |