Welcome to the FOSS_Axios assignment! In this project, you'll learn the fundamentals of Git, GitHub, and web development by creating a simple personal portfolio page. Follow the instructions below to complete the assignment.
First, fork the main repository to your GitHub account by clicking the Fork button on the top-right corner of the repo.
Clone the forked repository into your local system by using the following command:
git clone <your-forked-repo-url>
cd FOSS_AXIOS
Once cloned, navigate into the repository folder and create a new branch with your roll number as the branch name:
git branch <your-roll-number>
git checkout <your-roll-number>
OR you can do both with just one command
git checkout -b <your-roll-number>
In the project directory, create a new folder named with your roll number. This folder will contain your files: (You can create file using vscode as well)
mkdir <your-roll-number>
Inside the newly created folder, add an index.html
and style.css
file. These files will showcase your personal information. Feel free to add the following details:
- Your name
- Roll number
- Photo
- Branch
- Skills
- Hobbies
- Any other information you want to share
After adding your HTML and CSS files, use Git to stage and commit your changes:
git add .
git commit -m "Added my portfolio files - <your-roll-number>"
Push the newly created branch to your forked repository:
git push --set-upstream origin <your_branch_name>
Finally, head back to the original repository and create a pull request (PR) from your forked repository. Make sure to select your branch as the source and the main repository's main
branch as the target.
- Fork the repo.
- Clone the repo to your system.
- Create a branch using your roll number.
- Add a folder with your roll number.
- Create HTML & CSS files inside the folder to introduce yourself.
- Stage and commit your changes.
- Push to your GitHub repository.
- Create a pull request to the main repository.
Please ensure to submit your pull request before the deadline.