HTML? What's that?

HTML is the language webpages are written in. It's an acronym for hypertext markup language. Please don't ask what that means, because I'm not too sure myself. The important thing is that you can write a webpage with it. It's a very simple coding language, but a bunch of web snobs are trying to pretend it's tough.

The basics.

Here is the most basic, no-frills layout of a webpage.

<HTML>
<HEAD>
<TITLE> Title Here </TITLE>
</HEAD>

<BODY>

This is where the text, images, or whatever go.

</BODY>
</HTML>

What it means:

And the code above will look like this.

Back to the tutorial menu