Skip to content

Sparsh2105/FOSS_AXIOs1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FOSS_Axios Assignment: Personal Portfolio Submission

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.

Instructions

1. Fork the Repository

First, fork the main repository to your GitHub account by clicking the Fork button on the top-right corner of the repo.

2. Clone the Repository

Clone the forked repository into your local system by using the following command:

git clone <your-forked-repo-url>

Note : Make sure to move inside the folder before next step

cd FOSS_AXIOS

3. Create a New Branch

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>

4. Add Your Folder

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>

5. Create HTML and CSS Files

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

6. Add and Commit Your Changes

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>"

7. Push Your Branch

Push the newly created branch to your forked repository:

git push --set-upstream origin <your_branch_name>

8. Create a Pull Request

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.


Task Overview

  1. Fork the repo.
  2. Clone the repo to your system.
  3. Create a branch using your roll number.
  4. Add a folder with your roll number.
  5. Create HTML & CSS files inside the folder to introduce yourself.
  6. Stage and commit your changes.
  7. Push to your GitHub repository.
  8. Create a pull request to the main repository.

Deadline : 9 Oct 2024

Please ensure to submit your pull request before the deadline.

Happy Coding! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 71.2%
  • CSS 28.8%