File: table.html

package info (click to toggle)
netrik 1.16.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,164 kB
  • ctags: 618
  • sloc: ansic: 6,657; sh: 994; makefile: 169
file content (28 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (7)
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
<html> <head></head>
<body>
<p>
   some text before the table
   <table>
      <tr>
	 <th></th>
	 <th>first column</th>
	 <th>second column</th>
      </tr> <tr>
	 <th>first row</th>
	 <td>first data cell</td>
	 <td>
	    <p>
	       second cell contains
	    </p> <p>
	       two paragraphs
	    </p>
	 </td>
      </tr> <tr>
	 <th>second row</th>
	 <td colspan="2">span over third and fourth data cell</td>
      </tr>
   </table>
   some text after the table
</p>
</body>
</html>