- Objective - To add CSS to a Website.
- Purpose - To practice using CSS with HTML.
- Description
- You are provided with an
index.html
document at the root of this project, and astyle.css
in thecss
folder. - You will add CSS to the style.css file.
- You will have atleast 1 hour to work on this now, and can complete it on your own time if need be.
- Use the skills learned in the HTML and CSS lessons to complete this project.
- "Ask three before me"
- We are here to help, but please check web resources or consult with peers prior to asking Instructor/TAs. This helps build your "search muscles" which are very important to your future roles as Developers.
- The objective is to style the website 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 directory on your computer that you use to keep your projects (ex.
dev
directory). - Open the newly cloned project in a code editor (ex. Visual Studio Code).
- from a text editor (i.e. - Visual Studio Code), select:
File
>Open Folder
- Select the directory you used to store your projects (ex.
dev
directory) - From the text editor,in the directory you use to store your projects (ex.
dev
directory), locate the newly cloned project - Modify the
index.html
andstyle.css
by adding your own code.
- Select the directory you used to store your projects (ex.
- 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 the staging area
git commit -m 'I have made an edit to a file!'
- Save all staged changes to local repository
git push -u origin main
- Push changes from local repository to remote repository
- From the browser, navigate to the forked project from your Github account.
- Click the
Pull Requests
tab. - Select
New Pull Request