Demystifying HTML

HTML is about document structure! It consists not of boxes and lines and shapes, not about formatting or design. It is about document headers, bodies, paragraphs, lists, and tables.

The simplest HTML document looks like this:

<html>
</html>

This document contains absolutely nothing. It has an HTML section that begins with the opening <html> tag and ends with the closing </html> tag. If you displayed it in a browser, the browser would probably show you absolutely nothing. Let's do something interesting to it.

<html>
<body>
</body>
</html>

Now we've added a body to the HTML document. The body of the document begins with the opening <body> tag and ends with the closing </body> tag. I'm sure you're starting to get the idea here.

<html>
  <body>
    <p>This is a paragraph in the body of an HTML document!</p>
  </body>
</html>

So, a couple new things here. Notice:

A side note: any sequence of tabs, spaces, line-breaks, or anything else considered "white space" is supposed to be condensed into a single space in the browser. So <p>This     paragraph     is     spaced     out.</p> won't look like you might think it would. This is handy because you can format your code any way you want without worrying about the end document. Besides, such things are like formatting, not content or document structure.

Making More Interesting Documents

So you've already seen that HTML is amazingly simple. At this point, you could already just about write a term paper in HTML -- all you really need are text with paragraph breaks. But when the Web was invented as a way for scientists to share research papers with each other, there was a lot of excitement about being able to link documents, show helpful graphics, and display tabular information. How do you do that? With the <a>, <img>, and <table> tags.

<html>
  <body>
    <p>Here is a link to <a href="http://www.google.com/">my favorite search engine</a>.</p>
    <p>And here is a fun picture!</p>
    <p><img src="http://i56.tinypic.com/2hn57y0.jpg" alt="skydiving" /></p>
  </body>
</html>

A couple things to note: