Lesson 7: Paint & Style (Intro to Inline CSS)
Goal: Changing colors. ESL Vocab: Style, Color, Background, Center.
- Concept: HTML is the skeleton; CSS is the clothing. We can add a
styleattribute to any tag. - The Syntax:
<h1 style="color:red;">Red Title</h1><body style="background-color:lightblue;">
- Hands-on Practice:
- Change your page background to your favorite color.
- Change your
<h1>text color to white. - Try to center your title using
style="text-align:center;".
