Last Modified: 1/29/08
  Computer Training
Introduction to XML

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
Previous Home Next

Topics

Summary

HTML Is Not Enough

What Is XML?
  Ontologies
  SGML, HTML, & XML

XML Basics
  HTML Example
  XML File
  Structure
  Paths
  Well-Formed
  DTDs
  Schemas
  Validation
  Unicode
  What It Means

Transforming For
Presentation

  DHTML
  CSS
  XSL

Serving And Processing XML
  Server Side
  Client Side

XML Applications   Information Reuse
  B2B
  Text Encoding
  Syndication

Security

XML Resources On The Web

Part Two Of Class

 
Previous Home Next

Other Topics:   XML Editors

©1999 UW Technology