<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>This is my title</title>
<style type="text/css">
body {
	background-color: #95CFF2;
}
</style>
</head>

<body>

<h1>This is the header h1</h1>
<h2>This is h2</h2>
<h3>This is h2</h3>
<p>Below is an unordered list of pets:</p>
<ul>
  <li>Cats</li>
  <li>Dogs</li>
</ul>

<p>Below is an ordered list of pets:</p>
<ol>
  <li>Fish</li>
  <li>Hamsters</li>
</ol>

<p><strong>Here is bold text.</strong></p>
<p><em>Here is italic text.</em></p>
<p><u>Here is underlined text.</u></p>
<p>Here is an image <img src="http://www.willamette.edu/~gorr/classes/cs145/image.jpg" width="100" height="99" alt="fractal" /></p>

<p><a href="http:/www.willamette.edu/~gorr/classes/cs145">This is a link to our class webpage</a></p>

Here is a table with 2 columns and 3 rows
<table width="400" border="1">
  <tr>
    <td>first row, first column</td>
    <td>first row, second column</td>
  </tr>
  <tr>
    <td>second row, first column</td>
    <td>second row, second column</td>
  </tr>
  <tr>
    <td>third row, first column</td>
    <td>third row, first column</td>
  </tr>
</table>

</body>
</html>