Free Text - not part of any element except body

This is a header, level 3. Note the skipped space and the bold and the large font. It will wrap text.

Free Text

This is a 'p'. It skips space before and after rendering, but formats text according to the space available in the browser window. It "wraps".

Free Text
This is a 'div' It DOES NOT skip space before or after rendering, but formats text according to the space available in the browser window. It "wraps".
Free Text with a break
and with a horizonrtal rule
This is a 'div' with a link and another link follows with an image as the link
Free Text
  1. first item in list - notice the skipped space
  2. second
  3. third
Free Text Free Text followed by hr
Free text that has been styled with inline css using a span followed by a break
Free Text that has been bolded here and italicized here and bigged here followed by a break
Free Text that has been fonted here followed by hr
This is an image with break before and hr x 2 after:
wyatt

The html from the above is below...


<html>
<head>
<title>example 270 cod</title>
</head>
<body>
Free Text - not part of any element except body
<h3>
This is a header, level 3. Note the skipped space and the bold and the large font. It will wrap text.
</h3>
Free Text
<p>
This is a 'p'.
It skips space before and after rendering, but formats text according to the space available in the browser window. It "wraps".
</p>
Free Text
<div>
This is a 'div'
It DOES NOT skip space before or after rendering, but formats text according to the space available in the browser window. It "wraps".
</div>
Free Text with a break<br />and with a horizonrtal rule<hr />
<div>
This is a 'div' with a <a href="http:jbwyatt.com">link</a> and another link follows with an image as the link 
<a href="http://ted.com"><img src="http://jbwyatt.com/gifs/ted.png" /></a>
</div>
Free Text
<ol>
<li>first item in list - notice the skipped space</li>
<li>second</li>
<li>third</li>
</ol>
Free Text
<ul>
<li>first item in list - notice the skipped space</li>
<li>second</li>
<li>third</li>
</ul>
Free Text followed by hr
<hr />
<font color="red";">Free text that has been styled with inline css using a span</> followed by a break<br />
Free Text that has been <b>bolded here</b> and <i>italicized here</i> and <big>bigged here</big> followed by a break<br />
Free Text that has been <font color="blue" size="+2">fonted here</font> followed by hr
<hr />
This is an image with break before and hr x 2 after: <br /> <img src="http://jbwyatt.com/gifs/randomnumber.png" alt="wyatt" />
<hr />The html from the above..<hr/>
</body>
</html>