1. In format.css, add formatting for a new area, navbar, with these properties:

    #topnav {
    background: #cccccc;
    width: 100%;
    }

    #navbar {
    background: #cccccc;
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    }
  2. Save format.css.
  3. Open index.html in Notepad, and transform the unordered list into the navbar area:

    <ul id="navbar">
    <li>California</li>
    <li>The Rockies</li>
    <li>The Midwest</li>
    </ul>