105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<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>
 | 
						|
 | 
						|
  
 |