Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 3: Web Design with Cascading Style Sheets (CSS)!

Instruction

Practical Examples in CSS

Here’s an HTML snippet for a web page:

html

<body>
    <header>
        <h1>San Joaquin Valley Town Hall</h1>
    </header>
    <main>
        <p>Welcome to San Joaquin Valley Town Hall. We have some fascinating speakers for you this season!</p>
    </main>
</body>

In the CSS below, various units are used to style elements in the web page:

css

body {
 ...