CS 100 - Computer Literacy, Spring 2005

Lab 9

This lab assignment will have you add some lists to your Icarus Home Page.

To connect to Icarus from SEL, follow these steps:

  1. Click "Start"-->"All Programs"-->"Network Connectivity"-->"SSH Secure Shell"-->"Secure Shell Client". This will open SSH Client.
  2. Click "Quick Connect" icon or "Enter" key to connect to a host.
  3. The host name is:icarus.uic.edu, the username is your netid, the password is your netid password.

HTML Lists

A list displays information in an organized fashion. Each list is indented away from the left hand margin of the page. There are two main types of lists in HTML: ordered lists and unordered lists. When using the Swiki, we referred to ordered lists as numbered lists and unordered lists as bullet lists. The ordered lists use the tag pair <ol> </ol> and preface the items in the list with a numeric value. The unordered lists us the tag pair <ul> </ul> and preface the items in the list with a symbol. There are other list types, but these two are the most common. One of these other list types is the definition list. It uses the tag pair <dl> </dl> and have the list divided into two parts: the terms and the definitions.

Each item in the ordered and unordered lists is denoted by the use of the <li> tag (list item). As shown by the example below.

Here is a list of common pets:
<ol>
<li> Dogs
<li> Cats

<li> Fish
<li> Birds
</ol>

The above html code would display an ordered list as shown below. Note how the list is indented from the text.

Here is a list of common pets:
  1. Dogs
  2. Cats
  3. Fish
  4. Birds

Here is a description of the order list and unordered list tags.

Lab Assignment 9

Due: Monday 3/28/2005 by 12:00 noon. Modify (or create) the file in the web directory of your icarus account with the name of index.html. This file is to contain:
  1. An unordered list containing your Net-ID, your major and your year (i.e. Freashman, Sophomore, Junior or Senior)
  2. A sentence (or two) describing the ordered list to be given for the next part of the assignment.
  3. An ordered list of at least 5 items about anything you wish.

The ordered list that you submit can be on any topic you like. For example, your list could be:

Verify that your file is viewable via a web browser at the URL of:

     http://icarus.uic.edu/~NETID

where NETID is your own Net-ID
You can check this out via the link to your home page on the CS 100 Student List page.