- Objective - To create a personalized portfolio detailing yourself.
- Purpose - To establish familiarity with CSS and basic HTML.
- Description
- You are provided with an
index.html
document at the root of this project. - Edit the document by adding information about yourself to it.
- This will be accomplished over the course of several days.
- The objective is to achieve a portfolio with comparable quality to the image below.
- You are provided with an
- Begin by forking this project into a personal repository.
- To do this, click the
Fork
button located at the top right of this page.
- To do this, click the
- Navigate to your github profile to find the newly forked repository.
- Clone the repository from your account into the
~/dev
directory. - Open the newly cloned project in a code editor (Visual Studio Code, for example).
- from a text editor (i.e. - Visual Studio Code), select:
File
>Add Folder to WorkSpace
- select the
dev
directory
- select the
- from the text editor, in the
dev
directory, locate the newly cloned project- expand the project from the project explorer
- modify the
index.html
by adjusting the data to fit your persona.
- from a terminal navigate to the root directory of the cloned project.
- from the root directory of the project, execute the following commands:
git add .
- add all files in current directory to be indexed
git commit -m 'I have made an edit to a file!'
- save all indexed changes to local repository
git push -u origin master
- push changes from local repository to remote repository
- from the browser, navigate to the forked project from your bitbucket account.
- click the
Pull Requests
tab. - select
New Pull Request