Introduction to HTML

Before we begin, I'd like to mention that I gratuitously ripped these pages off from my advisor, Dave Beazley.

An HTML document is nothing more than plaintext surrounded by a collection of "tags" that describe the documents layout and structure. A minimalistic HTML document looks like this:

<HTML>
<HEAD>
<TITLE>Hello World</TITLE>
</HEAD>
<BODY>

Hello world.  This my HTML document.

</BODY>
</HTML>
Click here to see what it looks like.

Essential points:

Next