<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Interwebtranet &#187; (X)HTML</title>
	<atom:link href="http://interwebtranet.com/category/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://interwebtranet.com</link>
	<description>The Web &#38; Whatnot</description>
	<lastBuildDate>Tue, 30 Aug 2011 04:04:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Basic 1-Column Layout</title>
		<link>http://interwebtranet.com/basic-1-column-layout/</link>
		<comments>http://interwebtranet.com/basic-1-column-layout/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 02:44:39 +0000</pubDate>
		<dc:creator>Mr. Matthews</dc:creator>
				<category><![CDATA[(X)HTML]]></category>

		<guid isPermaLink="false">http://interwebtranet.com/?p=57</guid>
		<description><![CDATA[Most websites have a similar structure consisting of a header, content, and footer. The header is located at the top of the page and contains the title of the site, along with perhaps a logo, tagline, and some other branding. The header is usually consistent from page to page. The content is where the “meat [...]]]></description>
			<content:encoded><![CDATA[<p>Most websites have a similar structure consisting of a header, content, and footer. The <strong>header</strong> is located at the top of the page and contains the title of the site, along with perhaps a logo, tagline, and some other branding. The header is usually consistent from page to page.</p>
<p>The <strong>content</strong> is where the “meat and potatoes” of the page goes. The information here will change for each page. Often this section of the page is divided into two columns with one being primary content and the other being secondary content. <span id="more-57"></span>Some sites will features three columns and others just one. For the sake of simplicity, this example features only one column.</p>
<p>The <strong>footer</strong> is located at the bottom of the page and usually contains copyright information and a text version of the main menu.<em> (Note: On a Mac, the copyright symbol <strong>©</strong> is typed by pressing <strong>option-g</strong>.)</em> It may also include legal disclaimers, contact information, sitemaps, and credits. The footer, like the header, is usually consistent from page to page.</p>
<p>Each of these sections are created with a <strong>&lt;div&gt;</strong> tag and given an id. Additionally, another div is “wrapped” around all of these sections to control the overall width and positioning of the page. To be consistent, I will always give this div and id of “wrapper”, but you may see it with other names such as “container”.</p>
<p>Here is an example of the html source of a basic 1-column, XHTML layout:</p>
<pre name="code" class="xhtml">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;
    &lt;head&gt;
        &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
        &lt;title&gt;
            Basic 1-Column Layout
        &lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div id="wrapper"&gt;
            &lt;div id="header"&gt;
                &lt;h1&gt;
                    Page Header Here
                &lt;/h1&gt;
            &lt;/div&gt;&lt;!--END HEADER DIV --&gt;
            &lt;div id="content"&gt;
                &lt;p&gt;
                    Content Goes Here
                &lt;/p&gt;
            &lt;/div&gt;&lt;!--END CONTENT DIV --&gt;
            &lt;div id="footer"&gt;
                &lt;p&gt;
                    Footer Goes Here
                &lt;/p&gt;
            &lt;/div&gt;&lt;!--END FOOTER DIV --&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://interwebtranet.com/basic-1-column-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

