File: table-simple.html

package info (click to toggle)
htmldoc 1.8.27-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 11,708 kB
  • ctags: 5,685
  • sloc: ansic: 43,156; cpp: 22,678; perl: 395; makefile: 303; java: 59; php: 36; xml: 10; sh: 7
file content (78 lines) | stat: -rw-r--r-- 1,329 bytes parent folder | download | duplicates (6)
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
<HTML>
<HEAD>
	<TITLE>Simple Table Test</TITLE>
</HEAD>
<BODY>

<H1>Simple Table Test</H1>

<TABLE BORDER="1">
<TR>
	<TH>Heading 1</TH>
	<TH>Heading 2</TH>
	<TH>Heading 3</TH>
	<TH>Heading 4</TH>
</TR>
<TR>
	<TD>Cell 1,1</TD>
	<TD>Cell 2,1</TD>
	<TD>Cell 3,1</TD>
	<TD>Cell 4,1</TD>
</TR>
<TR>
	<TD>Cell 1,2</TD>
	<TD>Cell 2,2</TD>
	<TD>Cell 3,2</TD>
	<TD>Cell 4,2</TD>
</TR>
<TR>
	<TD>Cell 1,3</TD>
	<TD>Cell 2,3</TD>
	<TD>Cell 3,3</TD>
	<TD>Cell 4,3</TD>
</TR>
<TR>
	<TD>Cell 1,4</TD>
	<TD>Cell 2,4</TD>
	<TD>Cell 3,4</TD>
	<TD>Cell 4,4</TD>
</TR>
</TABLE>

<H1>NOWRAP Table Test</H1>

<TABLE BORDER="1">
<TR>
	<TH NOWRAP>This is a very long heading that should not be wrapped.</TH>
	<TH>Heading 2</TH>
	<TH>Heading 3</TH>
	<TH>Heading 4</TH>
</TR>
<TR>
	<TD NOWRAP>This is a very long cell that should not be wrapped.</TD>
	<TD>Cell 2,1</TD>
	<TD>Cell 3,1</TD>
	<TD>Cell 4,1</TD>
</TR>
<TR>
	<TD NOWRAP>This is a very long cell that should not be wrapped.</TD>
	<TD>Cell 2,2</TD>
	<TD>Cell 3,2</TD>
	<TD>Cell 4,2</TD>
</TR>
<TR>
	<TD NOWRAP>This is a very long cell that should not be wrapped.</TD>
	<TD>Cell 2,3</TD>
	<TD>Cell 3,3</TD>
	<TD>Cell 4,3</TD>
</TR>
<TR>
	<TD NOWRAP>This is a very long cell that should not be wrapped.</TD>
	<TD>Cell 2,4</TD>
	<TD>Cell 3,4</TD>
	<TD>Cell 4,4</TD>
</TR>
</TABLE>

</BODY>
</HTML>