Created Debian package
[xmldoc.git] / test / lists.html.exp
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4   <head>
5     <meta charset="utf-8"/>
6     <link rel="stylesheet" type="text/css" href="main.css"/>
7     <title>xmldoc lists check</title>
8     <style type="text/css">
9       .center
10       {
11          text-align : center ;
12       }
13       table.docinfo
14       {
15          margin-left  : 10% ;
16          margin-right : 10% ;
17          border-style : solid ;
18       }
19       th
20       {
21          border-style : solid ;
22          border-width : thin ;
23       }
24       h3.toc
25       {
26          margin-left : 2em ;
27       }
28       pre.example
29       {
30          border : solid ;
31          padding-bottom : 1em ;
32       }
33       span.red
34       {
35          color : red ;
36       }
37       span.green
38       {
39          color : green ;
40       }
41       span.blue
42       {
43          color : blue ;
44       }
45       span.cyan
46       {
47          color : cyan ;
48       }
49       span.magenta
50       {
51          color : magenta ;
52       }
53       span.yellow
54       {
55          color : yellow ;
56       }
57       span.orange
58       {
59          color : orange ;
60       }
61       span.violet
62       {
63          color : violet ;
64       }
65       span.purple
66       {
67          color : purple ;
68       }
69       span.brown
70       {
71          color : brown ;
72       }
73       span.pink
74       {
75          color : pink ;
76       }
77       span.olive
78       {
79          color : olive ;
80       }
81       span.black
82       {
83          color : black ;
84       }
85       span.darkgray
86       {
87          color : darkgray ;
88       }
89       span.gray
90       {
91          color : gray ;
92       }
93       span.lightgray
94       {
95          color : lightgray ;
96       }
97       span.white
98       {
99          color : white ;
100       }
101    </style>
102   </head>
103   <body>
104
105    <div class="titlepage">
106       <h1 class="titlepage">xmldoc lists check</h1>
107    </div>
108
109    <h1>1  <a id="CH1"/>Check 3 kinds of lists</h1><ul>
110          <li>
111            The itemize element
112          </li>
113          <li>
114            creates bulleted lists
115            <ul>
116              <li>
117                and can be nested
118              </li>
119           </ul>
120          </li>
121       </ul><ol>
122          <li>
123            The enumerate element
124          </li>
125          <li>
126            creates numbered lists
127            <ol>
128              <li>
129                and can also be nested
130              </li>
131           </ol>
132          </li>
133       </ol><dl>
134          <dt>first item</dt><dd>
135            The description element
136          </dd>
137          <dt>second item</dt><dd>
138            creates lists with description tags
139            <dl>
140              <dt>nested item</dt><dd>
141                and can be nested
142              </dd>
143           </dl>
144          </dd>
145       </dl>
146
147    <hr/></body>
148 </html>