Example: Play List
You want to make a list of plays that will be given on the
UW campus during this year. Included in your data should be
the name of the play, the author's name, and whether it is
a drama or a comedy.
Here is how you might do your list in HTML.
|
A Play List In HTML
|
<html>
<head>
<title>Drama At The UW</title>
</head>
<body>
<h1>Drama At The UW</h1>
<p>
The following drama productions will be given at
the University of Washington during February and March.
</p>
<ul>
<li>Drama: <b>Three Sisters</b>
by Anton Chekhov</li>
<li>Comedy: <b>As You Like It</b>
by William Shakespeare</li>
</ul>
</body>
</html>
|
|
How It Appears In The Browser
|
Drama At The UW
The following drama productions will be given at the
University of Washington during February and March.
-
Drama: Three Sisters by Anton Chekhov
-
Comedy: As You Like It by William
Shakespeare
|
|
|
 |
|
 |