Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Introduction to My First Web Page 4:32
- Changing Your HTML 3 objectives
- Changing Your CSS 2 objectives
- Text Editors and External Style Sheets 3:46
- Text Editors and External Style Sheets 5 questions
- What's New in Your HTML 2:52
- New HTML Features 3 questions
- Editing an Image Tag 2 objectives
- Comments, Selectors, and Syntax 2:36
- Comments, Selectors, and Syntax 3 questions
- Color Keywords, Hex Colors, and Font Families 3:13
- Color Keywords, Hex Colors, and Font Families 5 questions
- Wrap Up 0:11
- CSS Review 5 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
In this video you are going to be learning about text editor and why Workspaces is such a powerful programming tool. We are also going to be talking about what is stylesheet is and why we want to separate it from our HTML document.
Code for copy/paste:
/********* Top bar color *********/
html {
border-top: 20px solid #8A85A5;
}
/********* Body styling *********/
body {
max-width: 600px;
margin: 0 auto;
padding: 20px 20px;
font-size: 1.3em;
line-height: 1.6em;
font-family: Helvetica Neue, Helvetica, Arial, serif;
color: #777;
font-weight: 300;
}
/********* Image styling *********/
img {
border-radius: 100%;
max-width: 340px;
}
/********* Headline styling *********/
h1 {
font-size: 1.5em;
line-height: .5em;
color: #564581;
}
h2 {
font-size: 1em;
line-height: 1em;
font-style: oblique;
color: #aaa;
}
h3 {
font-size: .875em;
line-height: 1em;
font-weight: normal;
}
h4 {
margin-top: 60px;
font-weight: 500;
color: #564581;
}
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
KAMRAN IMRANLI
4,107 Points2 Answers
-
James Lam
336 Points2 Answers
-
PLUS
Waqas Khan
Courses Plus Student 2,661 Points1 Answer
-
John Perkins
1,899 PointsCOLOR
Posted by John PerkinsJohn Perkins
1,899 Points4 Answers
-
Mateo Znidar
2,841 PointsCSS
Posted by Mateo ZnidarMateo Znidar
2,841 Points2 Answers
-
Violet Gross
1,182 Points1 Answer
-
carly graham
2,663 PointsI tried to change the front colors when I was editing the CSS. It doesn't seem to be working. What should I do?
Posted by carly grahamcarly graham
2,663 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up