<?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 summary="This table gives some statistics about fruit                    flies: average height and weight, and percentage                    with red eyes (for both males and females).">

         <caption>
            <em>A test table with merged cells</em>
         </caption>

         <tr>
            <th rowspan="2"/>
            <th colspan="2">Average</th>
    
            <th rowspan="2">Red<br/>eyes</th>
         </tr>

         <tr>
            <th>height</th>
            <th>weight</th>
         </tr>

         <tr>
            <th>Males</th>
            <td>1.9</td>
            <td>0.003</td>
            <td>40%</td>
         </tr>

         <tr>
            <th>Females</th>
            <td>1.7</td>
            <td>0.002</td>
            <td>43%</td>
         </tr>

      </table>


   </body>
</html>