<?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>Vince Cutting &#187; outline</title>
	<atom:link href="http://www.vincecutting.co.uk/tag/outline/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vincecutting.co.uk</link>
	<description>Sharing web design and development ideas</description>
	<lastBuildDate>Thu, 25 Aug 2011 22:46:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Where to start when creating an xHTML page</title>
		<link>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html</link>
		<comments>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:02:04 +0000</pubDate>
		<dc:creator>Vince Cutting</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[outline]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.vincecutting.co.uk/?p=28</guid>
		<description><![CDATA[When I create a new xHTML/HTML page I like to start with a template where I can then fill in the blanks. My basic template will include the doctype for the document, the basic document tags (html, head, body, title etc), a link to my external stylesheet, and finally a &#8216;wrapper&#8217; div in the body [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.vincecutting.co.uk/wp-content/uploads/css-icon.jpg" alt="" title="css-icon" width="150" height="100" class="alignleft size-full wp-image-66" />When I create a new xHTML/HTML page I like to start with a template where I can then fill in the blanks. My basic template will include the doctype for the document, the basic document tags (html, head, body, title etc), a link to my external stylesheet, and finally a &#8216;wrapper&#8217; div in the body which makes things easier when specifying a width for you page or centering the layout. This is the basic framework for any xHTML document, and is the bare minimum you should start with.<br />
<span id="more-28"></span></p>
<p>The following code is my own basic xHTML template I use when creating static pages:</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&lt;html&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;title&gt;Title Here&lt;/title&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;robots&quot; content=&quot;index, follow&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;keywords&quot; content=&quot;&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;link rel=&quot;stylesheet&quot; href=&quot;css/styles.css&quot; type=&quot;text/css&quot; /&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;/head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;div id=&quot;wrapper&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;&lt;h1&gt;Title Here&lt;/h1&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;&lt;p&gt;Some content here.&lt;/p&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &lt;/div&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;/body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/html&gt;</div>
</li>
</ol>
</div>
<p>If you are using Aptana Studio to write your pages, then you can find a similar template under the HTML Snippets in the IDE.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincecutting.co.uk/where-to-start-when-creating-an-xhtml-page.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

