<?xml version="1.0" encoding="utf-8"?>

<!DOCTYPE html
  PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN" "../../dtd/xhtml-basic10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
   <head>
      <title>Zvon XHTML Reference Example</title>
   </head>
   <body>


      <table>

         <caption>Cups of coffee consumed by each senator</caption>

         <tr>
            <th>Name</th>
            <th>Cups</th>
            <th>Type of Coffee</th>
            <th>Sugar?</th>
         </tr>

         <tr>
            <td>T. Sexton</td>
            <td>10</td>
            <td>Espresso</td>
            <td>No</td>
         </tr>

         <tr>
            <td>J. Dinnen</td>
            <td>5</td>
            <td>Decaf</td>
            <td>Yes</td>
         </tr>

         <tr>
            <td>A. Soria</td>
            <td colspan="3">
               <em>Not available</em>
            </td>
         </tr>

      </table>


   </body>
</html>