Nested List Assignment
Practicing Structured Coding

  1. Open schedule.html and add a comment tag in the <body> section to identify your document.
    Example: <!-- Nested List -- >

  2. Add nested lists to your schedule to identify the instructor and room number for each course in your schedule. If you do not know the room number, make one up! Remember to tab before typing your nested list items. Save the schedule with the nested lists in your s1wk5 folder in your home drive folder.

    Example:

    CodeDisplays As
    <ol>
    <li>Computer Applications I
            <ul>
            <li>Mrs. Givens
            <li>Room 31
            </ul>
    <li>Computer Applications I and II
    1. Computer Applications I
      • Mrs. Givens
      • Room 31
    2. Computer Applications I and II

    Back to the Week 5 Schedule