1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<html>
<!--$Id: tables.html,v 1.2 1998/08/08 21:18:22 raman Exp $ -->
<head>
<LINK REV=MADE HREF="mailto:raman@adobe.com">
<title>Tables</title>
</head>
<body>
<h1>Tables</h1>
<TABLE>
<TR>
<TD>
Item
</TD>
<TD>
Date
</TD>
<TD>
Amount
</TD>
</TR>
<TR>
<TD>
this is to test a table cell that possibly spans more than
one line. We need Emacspeak to work well with this kind of content.
</TD>
<TD>
January 1, 1997
</TD>
<TD>
10.00
</TD>
</TR>
<TR>
<TD>
Dinner
</TD>
<TD>
January 2, 1997
</TD>
<TD>
<TABLE>
<TR>
<TD>
Item
</TD>
<TD>
Date
</TD>
<TD>
Amount
</TD>
</TR>
<TR>
<TD>
This is a nested table.
We need Emacspeak to work well with this kind of content.
</TD>
<TD>
January 1, 1997
</TD>
<TD>
10.00
</TD>
</TR>
<TR>
<TD>
Dinner
</TD>
<TD>
January 2, 1997
</TD>
<TD>
20.00
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<hr>
<address><A href="mailto:raman@adobe.com">Email: raman@adobe.com</a></address>
<!-- hhmts start -->
Last modified: Sat Aug 8 14:08:24 1998
<!-- hhmts end -->
</body>
</html>
|