Style Sheets

Style Sheets (CSS) are the primary way of providing formatting for your HTML. From background colors to text formatting, most of the visual aspects of your webpage will be controlled with a style sheet. The external style sheet required for this lab is a separate .css document from your index.html page. You will need add a link to your stylesheet at the beginning of your index.html page. For example, if you named your stylesheet "style.css" then you need to add
<link rel="StyleSheet" href="style.css" type="text/css" />
between the <head> tags. This has been done in the sample webpage. For this lab, your style sheet must contain:

  1. Body settings: background image or color
  2. Basic text formatting
  3. Another text class
  4. Link formatting

Resources