This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.

CSS Exercise Answers Repository


Beginner Exercise#1 Solution

  1. Create your style sheet reference link within your HTML document
  2. <link rel="stylesheet" href="your_style_sheet.css" />

 

  1. From your external style sheet select the body element and add a background-color
  2. @charset "UTF-8";
    body { background: #000; }

     

 

Advanced Exercise#1 Solution

Task Discussion