File: lists.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 (63 lines) | stat: -rw-r--r-- 2,087 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
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
<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
  <head><title>Lists Test Page</title></head>
  <body>

  <h1>Welcome to a List of Lists</h1>
  Lists are not only fun to make, they are fun to use. They help us:

  <ol>
    <li>remember what the heck we are doing each day</li>
    <li>arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of priority, even if it is artificial</li>
    <li>look really cool when we carry them around on yellow Post-Its<font size="-2">tm.</font></li>
    <li><font size="-0">and that other thing I keep forgetting.</font></li>
  </ol>

  Your ordered lists can start at a strange number, like:

  <ol start="6" type="I">
    <li><font size="-0">And use roman numerals,</font></li>
    <li type="a"><font size="-0">You might try using letters as well,</font></li>
    <li type="A"><font size="-0">Maybe you prefer Big Letters,</font></li>
    <li type="i"><font size="-0">or small roman numerals</font></li>
    <li type="disc"><font size="-0">But discs belong to unordered lists</font></li>
    <li value="50" type="1"><font size="-0">Though you can set the value in a list item!</font></li>
  </ol>

  Unordered list:
  <ul>
    <li>listing item
      <ul>
	<li>first sublevel
	  <ul>
            <li>look for the bullet on
              <ul>
		<li>each sublevel</li>
		<li>they should all be different, except here.</li>
              </ul>
	    </li>
            <li><font size="-0">second sublevel</font></li>
	  </ul>
	</li>
	<li type="square">or you can specify a square
	  <ul>
            <li type="circle">if your TYPE is circle</li>
            <li type="disc">or even a disc</li>
	  </ul>
	</li>
      </ul>
    </li>
    <li type="square">Franz Liszt
      <ul>
	<li>was a composer who was not square</li>
	<li type="disc">would have liked the Who</li>
      </ul>
    </li>
  </ul>
  <ul type="circle">
    <li>feeling listless</li>
    <li color="#FFFF00" type="square">blah, blah, blah</li>
    <li type="disc">whine, whine, whine</li>
  </ul>

</body></html>