File: list.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 (94 lines) | stat: -rw-r--r-- 1,115 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<HTML>
<HEAD>
	<TITLE>List Tests</TITLE>
</HEAD>
<BODY>

<H1>List Tests</H1>

<P>Unordered List:

<UL>
	<LI>List 1
	<LI>List 2
	<LI>List 3
	<LI>List 4
</UL>

<P>Ordered List:

<OL>
	<LI>List 1
	<LI>List 2
	<LI>List 3
	<LI>List 4
</OL>

<P>Nested Ordered List:

<OL>
	<LI>List 1
	<OL type=a>
		<LI>Sub-list 1.1
		<LI>Sub-list 1.2
		<LI>Sub-list 1.3
	</OL>
	<LI>List 2
	<OL type=A>
		<LI>Sub-list 2.1
		<LI>Sub-list 2.2
		<LI>Sub-list 2.3
	</OL>
	<LI>List 3
	<OL type=i>
		<LI>Sub-list 3.1
		<LI>Sub-list 3.2
		<LI>Sub-list 3.3
	</OL>
	<LI>List 4
	<OL type=I>
		<LI>Sub-list 4.1
		<LI>Sub-list 4.2
		<LI>Sub-list 4.3
	</OL>
</OL>

<P>Nested Descriptive List:

<DL>

	<DT>Term
	<DD>Description
	<DL>
		<DT>Nested Term
		<DD>Nested Description
	</DL>
	<DT>Term 2
	<DD>Description 2
</DL>

<P>Preformatted Text:

<PRE>Line 1
Line 2
Line 3
Line 4</PRE>

<P>Command-Line Example:

<UL>

	<P>The Acme Speedwriter program accepts the name of a
	file on the command-line:

	<UL><PRE>
% speedwriter filename.speed
</PRE></UL>

	<P>If you don't specify a filename a new, blank document
	will be opened.

</UL>

</BODY>
</HTML>