Tag Training V2.0
General layout
this is a very basic table layout, like the div section you can have as many as you like but the more complicated you make it the longer it will take you to style it.
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="200" height="150" border="0">
<tr class="container">
<ul>
<li>list items are generally used for navigation.</li>
</ul>
<tr class="content">
<td><p>content goes here</p></td>
</tr>
</table>
</body>
</html>
This is a very basic version of how a div layout should be done. You can have as many sections as you want but remember, the more sections you have the more work you will have to do to style it!
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<div id="container">
This is a container tag which will hold the content of your site to help in layout later on. I will explain this later on.
<ul>
<li>list items are generally used for navigation.</li>
</ul>
<div id="content">
<p>contents goes here</p>
</div>
</div>
</body>
</html>
© Matthew Hillman 2006/7 | Apple Gate Studios
