Collaboration on GitHub
- Log in to your GitHub account using a web browser.
- Fork this repository.
- Download and setup GitHub Desktop and sign in with your GitHub account.
- Clone your forked repository using GitHub Desktop.
- Open the cloned repository in an IDE such as Visual Studio Code, Sublime Text, or Notepad++.
-
Create a new
.js
file in the js folder, with your first name as the file name (e.g. "john.js"). -
Add your basic personal information in the file, following the given format.
devs.push({ firstName : 'YourFirstName', middleName: 'YourMiddleName', lastName : 'YourLastName', gender : '[Male/Female]', username : 'YourGitHubUsername' });
You can also look at arvic.js for reference.
-
Include your script to the
index.html
file by adding a new script tag.<!-- START WORK HERE (Add personal scripts) --> <script src="js/arvic.js"></script> ...
Open index.html
in a web browser. Check if your data is displayed on the page.
- Commit and Push changes to your fork.
- Make a Pull Request to the original repository.