CSS Exercise Answers Repository
Beginner 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; }
Advanced Exercise#1 Solution