CSS Exercise Answers Repository [Sept. 16, 2011, 3:20 p.m.]
Exercise#1 Solution
- Create your style sheet reference link within your HTML document
- <link rel="stylesheet" href="your_style_sheet.css" />
- From your external style sheet select the body element and add a background-color
-
@charset "UTF-8";
body { background: #000; }
Exercise#2 Solution