File: lists2.html

package info (click to toggle)
orca 49.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,532 kB
  • sloc: python: 98,331; javascript: 281; sh: 64; xml: 27; makefile: 5
file content (19 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<title>Lists test</title>
</head>
<body>
<ul>
<li>Not in a paragraph</li>
<li><p>In a paragraph</p></li>
<li><div>In a section</div></li>
<ol>
   <li>A nested list item, not in a paragraph</li>
   <li><p>A nested list item, in a paragraph</p></li>
   <li><div>A nested list item, in a section</div></li>
</ol>
<li><div><p>In a paragraph that's in a section</p></div></li>
</ul>
</body>
</html>