CSS Styling Code Along
Objectives
Review linking an external CSS file.
Review writing selectors.
Styling text content.
Introduction
In this code along exercise we will be adding style to our pages by linking an external CSS file. If you open this lab on the in-browser Learn IDE, all the files you need for following along will be available, and will automatically clone down. However, if you were following along using a personal exceptional-realty
repository in the previous HTML lessons, you can continue from where we left off by running the following in your terminal:
Steps
Tasks for LearnIDE Environment Users
Click the "OPEN IDE" button
Tasks for Local Environment Users
Fork this repository.
Clone your fork locally.
cd
into the local repo you just cloned.Code along with the included video below. While coding work in your cloned copy of this lab! The instructors foldername will be different than yours.
After the video: stage, commit, and push up your changes.
Then make a pull request.
Create a new branch for this lesson called css-styling
by typing git checkout -b css-styling
from inside the project folder before continuing.
When you're finished, add, commit and push your work up. Then, checkout master
, and merge it with the work you've done on the css-styling
branch, and push up the master
as well. The commands should look like the following:
Last updated