Forum Moderators: open
<body>
...... (code A) goes inside of a table here..
</body>
[pre][1]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
...head tags like title, meta, link
</head>
<body>
... your actual site..
</body>
</html>
[/1][/pre] The basic idea is that the head section contains information that describes the page, so search engines can (in theory), just download the head of your page to find out everything about it.
Some tags can only be used in head. <title>, <meta> and <link> are examples of this.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> Your Title Here </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Language" content="en-gb">
<meta name="Keywords" content=" your, keyword, list, here ">
<meta name="Description" content=" Your Description Here. ">
<meta name="MSSmartTagsPreventParsing" content="TRUE">
<meta http-equiv="imagetoolbar" content="no">
</head>
Of the en-gb part, the first two letters come from the code list in ISO 639 and the last two letters come from the code list in ISO 3166.
See also ISO 4217 for codes for representing currency, and then ISO 8601 for formats for date and time.
Code within the page:
I use: <a href="somepage.html" title="some text here"></a> for links.
I use <img src="somefile.png" alt="some text"> for images.
Headings are done with <hx></hx> tags, properly used from <h1></h1> downwards.