File: simpleheader.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 (104 lines) | stat: -rw-r--r-- 2,593 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
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
95
96
97
98
99
100
101
102
103
104
<html>
  <h1>This is a header 1</h1>
    <p>This is the first paragraph.  I'm going to type away here just
    to make some text appear.  Here's some more text.  Oh boy.  This
    is exciting.</p>
    <p>This is the second paragraph.  Two is such a happy number.  Do
    you like the number two?</p>
  <h2>This is a header 2</h2>
    <p>Hey here is the third paragraph.  Oh boy!</p>
  <h2>This is another header 2</h2>
    <p>Hey here is the fourth paragraph.  Oh boy!</p>
  <h3>This is a header 3</h3>
  <ul>
    <li>Unordered list item 1</li>
    <li>Unordered list item 2</li>
    <li>Unordered list item 3</li>
  </ul>
  <ol>
    <li>Ordered list item 1
      <ol>
        <li>Good sublist item 1</li>
        <li>Good sublist item 2</li>
        <li>Good sublist item 3</li>
      </ol>
    </li>
    <li>Ordered list item 2</li>
      <ol>
        <li>Bad sublist item 1</li>
        <li>Bad sublist item 2</li>
        <li>Bad sublist item 3</li>
      </ol>
    <li>Ordered list item 3</li>
  </ol>
  <ul>
    <li><a href="foo">Linked list item 1</a></li>
    <li><a href="foo">Linked list item 2</a></li>
    <li><a href="foo">Linked list item 3</a></li>
  </ul>

  <a href="#anchor_1">thin crust<br>
  </a><a href="#anchor_2">sicilian crust<br>
  </a><a href="#anchor_3">calzone for two<br>
  </a><a href="#anchor_4">cheeses<br>
  </a><a href="#anchor_5">meats<br>
  </a><a href="#anchor_6">sauces<br>
  </a><a href="#anchor_7">seafood<br>
  </a><a href="#anchor_8">vegetables<br>
  </a>

  <hr>

  <h3><a href="http://www.sun.com">This is a header 3</a>
      <span style="color:green"> with green text</span></h3>

  <p>Some text here.</p>

  <h3><a href="http://www.sun.com">This is a header 3</a>
      with non-linked text.</h3>

  <p>Some more text here.</p>

  <h3><a href="http://www.sun.com">This is a header 3</a></h3>

  <p>So exciting.</p>

  <h3><a href="http://www.sun.com">This is a header 3
      <span style="color:green"> with Green!</span></a></h3> 

  <p>Green headings and spam.</p>

  <hr>

  <table border=1>
    <tr>
      <td><b>Month</b></td>
      <td><b>Day</b></td>
      <td><b>Year</b></td>
    </tr>
    <tr>
      <td>January</td>
      <td>1</td>
      <td>2006</td>
    </tr>
    <tr>
      <td>March</td>
      <td>15</td>
      <td>2006</td>
    </tr>
    <tr>
      <td>April</td>
      <td>1</td>
      <td>2006</td>
    </tr>
  </table>
 
  <hr>

  <p>Here is a picture:
   <image src="willie-walker.gif" title="Title: Dashing picture of Willie Walker" alt="Alt: Dashing picture of Willie Walker">He's so handsome.</image>
  </p>

</html>