HTML Basic Review

Having looked at the basic structure of the html code, your pages code should be layed out similar to that shown below. In this example i have used a Doctype of XHTML 1.1 - One of the latest doctypes to be released.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>My Homepage</title>
</head>
<body>
<h1>XHTML Help</h1>
Your Content would go here, this is explained in the next section
</body>
</html>

If you have managed to understand up to this point, continue to section 2! If not, you may want to go through the instructions again or ask for assistance in the forum!

Back to html tag index