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

Multiple Style Sheets

Multiple external style sheets can be used for a single page. When using more than one, the styles are applied in the order they are linked, so the last style sheet linked will override any conflicting styles from earlier sheets.

<head>
    <link rel="stylesheet" href="styles/main.css">
    <link rel="stylesheet" href="styles/overrides.css">
</head>