ITS Home Tech Support Laptop Program E Learning Media Services Communications

Web Services Home

How to obtain Webspace

Course1

Desire2Learn

Web Accessibility Guidelines

WSU Web Policy

HTML Tutorial

FTP Tutorial

Student Webs

Student Clubs

Webmail

 

Definition Lists

This type of list is a little more complicated, but still very easy to use. This list starts with the <dl> opening tag, and ends with the </dl> closing tag. This has another tag known as <dt> for Definition Term, and <dd> for Definition Definition. These two tags do not need closing tags.

What you type:

<dl>
<dt>education
<dd>The act or process of educating or being educated.
<dt>university
<dd>an institution for higher learning with teaching and research facilities constituting a graduate school and professional schools that award master's degrees and doctorates and an undergraduate division that awards bachelor's degrees.
<dt>warrior
<dd>someone engaged or experienced in war, or in the military life; a soldier; a champion.
</dl>

What you see:

education
The act or process of educating or being educated.
university
an institution for higher learning with teaching and research facilities constituting a graduate school and professional schools that award master's degrees and doctorates and an undergraduate division that awards bachelor's degrees.
warrior
someone engaged or experienced in war, or in the military life; a soldier; a champion.

**Putting together everything we have learned so far, you could produce an HTML document that looks like this:

    <html>

    <head>
    <title>My Web Page</title>
    </head>

    <body vlink="red">
    <h2>My First Web Page</h2>
    <hr>
    <div align="center"><img src="http://www.winona.edu/warrior_head.gif" alt="WSU Warrior Head"></div><p>
    <h4>Things I Like To Do:</h4>
    <font size="+2" face="verdana" color="blue"><ul>
      <li>Read
      <li>Run the lakes
      <li>Climb the bluffs
      <li>Watch T.V.
    </ul></font><br>
    <h3>My favorite links</h3>
    <font face="arial"><a href="http://www.winona.edu/">Winona State</a></font><p>
    <font face="arial"><a href="http://www.winona.edu/athletics">Warrior Athletics</a></font><p>
    <font face="arial"><a href="http://www.espn.com">ESPN.com</a></font><p>

    </body>

    </html>

To view this web page, click here.

<---Back to Ordered Lists    On to Tables--->