Page is a not externally linkable
pageoneresults - 9:18 pm on Jan 22, 2008 (gmt 0)
My example above is very generic but should give you an idea. Semantically Structured meaning to use those elements available to me that provide "meaning" to the content they encase. Source Ordered Content meaning to place those elements in an ordered fashion using CSS and AP (Absolute Positioning). This allows you to move the core content of the page right up after the opening <body> element. From my perspective, it gives the page "meaning" immediately without any guesswork. It also makes for a nice user experience with styles turned off and since that is how the bot is browsing... ;) P.S. My footers are typically within the main content so it is not absolutely positioned. It flows with the content. [edited by: pageoneresults at 9:47 pm (utc) on Jan. 22, 2008]
<body> <div id="body"> <h1></h1>
<p></p>
<ul>
<li></li>
</ul><h2></h2>
<p></p>
<ol>
<li></li>
</ol></div> <div id="leftmenu">
<h3></h3>
<ul>
<li></li>
</ul>
</div><div id="rightmenu">
<h3></h3>
<ul>
<li></li>
</ul>
</div><div id="footer">
<h3></h3>
<ul>
<li></li>
</ul>
</div></body>