diff --git a/open-source-arcade/Contributors.md b/open-source-arcade/Contributors.md
new file mode 100644
index 0000000..265049b
--- /dev/null
+++ b/open-source-arcade/Contributors.md
@@ -0,0 +1,53 @@
+Information Management Group
+Angel Sharma
+
+Cherish Puniani
+
+Arnav Garg
+Akhil Punia
+Noble Mittal
+Suyash Rahul
+Bhoomi Bonal
+Ujjwal Arya
+Somil Jain
+Dhruv Saxena
+Nikhil Nagar
+LU_1F3R
+Bhuro
+
+Mohit Agarwal
+Sourav
+
+Anshika Arora
+
+Dhairya Singhal
+Arnav Gupta
+
+Aditya Karwa
+Dhruv Pankaj
+
+Tanmay Sharma
+Shashank Shekhar
+Yash Hirani
+Aditya Ranjan
+Shantanu Singh
+Divyansh Agarwal
+kavya rajput
+Devansh Pandey
+Sanjeet Manna
+
+Hardik Narang
+Vaishnavi Kolgane
+Jasleen Kaur
+Vatsal Agarwal
+Basde Papa
+Divij Rawal
+Utsah
+Krishna Awasthi
+Pranav Konidena
+Abhay Pratap Choudhary
+Prachi Bhagat
+Archit Modi
+Lakshita
+Saurabh Rana
+
diff --git a/open-source-arcade/LICENSE b/open-source-arcade/LICENSE
new file mode 100644
index 0000000..8442679
--- /dev/null
+++ b/open-source-arcade/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2024 Information Management Group
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/open-source-arcade/README.md b/open-source-arcade/README.md
new file mode 100644
index 0000000..3d167c7
--- /dev/null
+++ b/open-source-arcade/README.md
@@ -0,0 +1,113 @@
+# First Open Source Contribution
+
+This project aims to simplify and guide the way beginners make their first contribution. If you are looking to make your first contribution, follow the steps below.
+
+
+
+#### If you don't have git on your machine, [install it](https://docs.github.com/en/get-started/quickstart/set-up-git).
+
+## Fork this repository
+
+Fork this repository by clicking on the fork button on the top of this page.
+This will create a copy of this repository in your account.
+
+## Clone the repository
+
+
+
+Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the _copy to clipboard_ icon.
+
+Open a terminal and run the following git command:
+
+```bash
+git clone URL_COPIED
+```
+
+where `URL_COPIED` is the url to this repository (your fork of this project). See the previous steps to obtain the url.
+
+
+
+For example:
+
+```bash
+git clone https://github.com/YOUR_USERNAME/open-source-arcade.git
+```
+
+where `YOUR_USERNAME` is your GitHub username. Here you're copying the contents of the open-source-arcade repository on GitHub to your computer.
+
+## Create a branch
+
+Change to the repository directory on your computer (if you are not already there):
+
+```bash
+cd open-source-arcade
+```
+
+Now create a branch using the `git checkout` command:
+
+```bash
+git checkout -b your-new-branch-name
+```
+
+For example:
+
+```bash
+git checkout -b add-inforamtion-management-group
+```
+
+## Make necessary changes and commit those changes
+
+Now open `Contributors.md` file in a text editor, add your name to it. Don't add it at the beginning or end of the file. Put it anywhere in between. Now, save the file.
+
+
+
+If you go to the project directory and execute the command `git status`, you'll see there are changes.
+
+Add those changes to the branch you just created using the `git add` command:
+
+```bash
+git add Contributors.md
+```
+
+Now commit those changes using the `git commit` command:
+
+```bash
+git commit -m "Add your-name to Contributors list"
+```
+
+replacing `your-name` with your name.
+
+## Push changes to GitHub
+
+Push your changes using the command `git push`:
+
+```bash
+git push -u origin your-branch-name
+```
+
+replacing `your-branch-name` with the name of the branch you created earlier.
+
+ If you get any errors while pushing, click here:
+
+- ### Authentication Error
+ remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
+ remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
+ fatal: Authentication failed for 'https://github.com/
+ Go to [GitHub's tutorial](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) on generating and configuring an SSH key to your account.
+
+