Beginner Html Lessons (Version 2)

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 style attribute to any tag.
  • The Syntax:
    • <h1 style="color:red;">Red Title</h1>
    • <body style="background-color:lightblue;">
  • Hands-on Practice:
    1. Change your page background to your favorite color.
    2. Change your <h1> text color to white.
    3. Try to center your title using style="text-align:center;".