<?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>Website Insites</title>
	<atom:link href="http://www.websiteinsites.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.websiteinsites.com</link>
	<description>Serving southern New Hampshire and western Maine with Professional Website Development</description>
	<lastBuildDate>Tue, 18 Oct 2011 20:33:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What Is the HTML 5 title Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-title-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-title-tag/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 10:00:21 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=221</guid>
		<description><![CDATA[The HTML 5 title tag defines the page title. When Do You Use the title Tag in HTML 5? The title tag must be used once, and only once per HTML page. It is in my opinion the most important &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-title-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The HTML 5 <code>title</code> tag defines the page title.</p>
<h2>When Do You Use the title Tag in HTML 5?</h2>
<p>The <code>title</code> tag must be used once, and only once per HTML page. It is in my opinion the most important HTML tag to learn. The reasons are many.</p>
<p>First, without a page title, you can&#8217;t have a subject for your page. Would you write a novel and not title your work? How would people refer to it? How would they know what in the world it was about? When you write a clear, concise title, then you can truly know what topic the page will discuss.</p>
<p>Second, when people use search engines to find information, what usually shows in the search results is the title tags of pages. The titles are usually linked in search results. It gives the searcher a clear, concise way to scan for the most relevant search result. Without this, a searcher skips by your information, or worse, it never shows up in any results because search engines don&#8217;t know what to do with it.</p>
<p>Third, it gives you a chance to display your &#8220;brand&#8221; in front of searchers, so they become familiar with you. The reason is because many people put their site name in the title tags as well &mdash; either at the beginning of the tag or at the end. This gives you great exposure to a wide variety of people, even if they never click your search result.</p>
<p>Web browsers like Internet Explorer, Mozilla Firefox, and Google Chrome also display the title tag in the very top section of the currently open page or tab. So now you can see how important this tag is.</p>
<p>Some cautions: title tags should not be very long, because they will get chopped off, or truncated, by search engines in the search results, so make your titles be meaningful phrases or sentences. And while it&#8217;s a good idea to put the main ideas and key words in your title, don&#8217;t go overboard by stuffing them full and making no sense to the reader. Your readers are smart and so are the search engines &mdash; they will quickly pass you by as they realize what you&#8217;re trying to do.</p>
<p>In my opinion, your title tag should match your <code>h1</code> tag on the page. That is, your topic, the <code>h1,</code> should be what you&#8217;re displaying in the title tag. If it&#8217;s not close, both your readers and search engines will quickly become either confused or feel tricked by what you&#8217;ve done.</p>
<h2>How Is the title Tag Used in HTML 5 Documents?</h2>
<p>Here is an example:</p>
<p>
<code class="example"><br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;What Is the HTML 5 title Tag? &mdash; Website Insites&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt;What Is the HTML 5 title Tag?&lt;/h1&gt;<br />
&lt;p&gt;The HTML 5 <code>title</code> tag defines the page title.&lt;/p&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-title-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 table Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-table-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-table-tag/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 10:00:12 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=217</guid>
		<description><![CDATA[The HTML 5 table tag defines a table in a page. When Do You Use the table Tag in HTML 5? The table tag creates a table with columns and rows of data. Within it, there can be many other &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-table-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The HTML 5 <code>table</code> tag defines a table in a page.</p>
<h2>When Do You Use the table Tag in HTML 5?</h2>
<p>The <code>table</code> tag creates a table with columns and rows of data. Within it, there can be many other tags. The ones most commonly used are the <code>caption</code> tag to define a descriptive caption for the table, the <code>thead</code> tag to define a table header section, and within it the <code>th</code> tags to define column headings. More important tags include the <code>tr</code> tags which define table rows, <code>td</code> tags within the rows to define table data, and <code>tbody</code> tag to enclose the main content of the table. There may also be a <code>tfoot</code> tag to enclose a footer for the table. See the example below.</p>
<h2>How Is the table Tag Used in HTML 5 Documents?</h2>
<p>Here is an example table with the most important related tags.</p>
<p>
<code class="example"><br />
&lt;table&gt;<br />
&lt;caption&gt;<br />
Boot Size Chart<br />
&lt;/caption&gt;<br />
&lt;thead&gt;<br />
&lt;tr&gt;<br />
&lt;th&gt;Size&lt;/th&gt;<br />
&lt;th&gt;Boot Size&lt;/th&gt;<br />
&lt;/tr&gt;<br />
&lt;/thead&gt;<br />
&lt;tfoot&gt;<br />
&lt;tr colspan="2"&gt;<br />
&lt;td&gt;All boot sizes are shown in inches&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tfoot&gt;<br />
&lt;tbody&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;SM&lt;/td&gt;<br />
&lt;td&gt;8&lt;/td&gt;<br />
&lt;td&gt;MD&lt;/td&gt;<br />
&lt;td&gt;10&lt;/td&gt;<br />
&lt;td&gt;LG&lt;/td&gt;<br />
&lt;td&gt;12&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/tbody&gt;<br />
&lt;/table&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-table-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 span Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-span-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-span-tag/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 10:00:06 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=214</guid>
		<description><![CDATA[The HTML 5 span tag defines a group of inline items in a page. When Do You Use the span Tag in HTML 5? The span tag, used by itself, doesn&#8217;t change anything at all. However, it can be useful &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-span-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The HTML 5 <code>span</code> tag defines a group of inline items in a page.</p>
<h2>When Do You Use the span Tag in HTML 5?</h2>
<p>The <code>span</code> tag, used by itself, doesn&#8217;t change anything at all. However, it can be useful to change some items (text, images, etc) within a larger group, and then apply CSS to the span. All will be made clear in the example below. You could also use JavaScript to make changes to that span.</p>
<h2>How Is the span Tag Used in HTML 5 Documents?</h2>
<p>Here is an example that you might use to apply a special &#8220;Drop Cap&#8221; effect to the beginning of a paragraph using CSS.</p>
<p>
<code class="example"><br />
&lt;p&gt;&lt;span class="dropcap"&gt;In the beginning&lt;/span&gt; was the Word, and the Word was with God, and the Word was God.&lt;/p&gt;<br />
&lt;cite&gt;John 1:1, NKJV&lt;/cite&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-span-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 section Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-section-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-section-tag/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 10:00:00 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=210</guid>
		<description><![CDATA[The HTML 5 section tag defines sections in an HTML page, oddly enough. When Do You Use the section Tag in HTML 5? The section tag is new in HTML 5, and can be used for chapters, footers, headers, sidebars, &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-section-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The HTML 5 <code>section</code> tag defines sections in an HTML page, oddly enough.</p>
<h2>When Do You Use the section Tag in HTML 5?</h2>
<p>The <code>section</code> tag is new in HTML 5, and can be used for chapters, footers, headers, sidebars, etc. In fact, where you might normally use a <code>div</code> tag to group blocks of HTML on a page, you could instead use the <code>section</code> tag. You probably should not use it for page layout, though, as that&#8217;s not the use for which it&#8217;s intended.</p>
<p>If you grab text or images from elsewhere on the internet, please do the right thing and make sure you use the <code>cite</code> attribute to cite the url where you grabbed the content.</p>
<h2>How Is the section Tag Used in HTML 5 Documents?</h2>
<p>Here is an example:</p>
<p>
<code class="example"><br />
&lt;section cite="http://www.youversion.com/reading-plans/blended"&gt;<br />
&lt;h1&gt;Blended Plan Length: 1 Year&lt;/h1&gt;<br />
&lt;p&gt;This plan is designed to add variety to your reading of the Bible.&lt;/p&gt;<br />
&lt;/section&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-section-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 p Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-p-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-p-tag/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 10:00:39 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=205</guid>
		<description><![CDATA[In HTML 5, the p tag defines a paragraph of text. When Do You Use the p Tag in HTML 5? In HTML 5, you may use the p tag to set a section of text apart as a paragraph, &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-p-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>p</code> tag defines a paragraph of text.</p>
<h2>When Do You Use the <code>p</code> Tag in HTML 5?</h2>
<p>In HTML 5, you may use the <code>p</code> tag to set a section of text apart as a paragraph, just as you would in a story, or an essay. Each paragraph should have a separate thought, just like in any other writing.</p>
<p>The paragraph tag is usually set apart with white space before and after it in most browsers. This can be controlled with CSS. Make sure you use this tag for paragraphs of text, and not just to add white space.</p>
<h2>How Is the <code>p</code> Tag Used in HTML 5 Documents?</h2>
<p>Here is an example:</p>
<p><code class="example"><br />
&lt;p&gt;This a paragraph of text.&lt;/p&gt;<br />
&lt;p&gt;This is another paragraph of text.&lt;/p&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-p-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 nav Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-nav-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-nav-tag/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 10:00:11 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=199</guid>
		<description><![CDATA[In HTML 5, the nav tag defines a section of a page used for navigation. When Do You Use the nav Tag in HTML 5? In HTML 5, the nav tag is new, and the specification is not entirely clear &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-nav-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>nav</code> tag defines a section of a page used for navigation.</p>
<h2>When Do You Use the <code>nav</code> Tag in HTML 5?</h2>
<p>In HTML 5, the <code>nav</code> tag is new, and the specification is not entirely clear about it, so I take it to mean either that there is some developer flexibility in how to use it, or that the spec is not yet fully developed.</p>
<p>Either way, right now it&#8217;s possible to use the <code>nav</code> tag in a grouping of links, an ordered, or an unordered list of links. Anything that can be considered navigation on the page can now be semantically marked up as navigation. See the examples below. Note that I&#8217;ve added class attributes to each so I can easily specify how I want to style them.</p>
<h2>How Is the <code>nav</code> Tag Used in HTML 5 Documents?</h2>
<p>Here are some examples:</p>
<p><code class="example"><br />
&lt;nav class="pages"&gt;<br />
&lt;h2&gt;Page Navigation&lt;/h2&gt;<br />
&lt;a href="/index"&gt;Home&lt;/a&gt;<br />
&lt;a href="/about"&gt;About Us&lt;/a&gt;<br />
&lt;a href="/contact"&gt;Contact Us&lt;/a&gt;<br />
&lt;/nav&gt;<br />
&lt;nav class="categories"&gt;<br />
&lt;h2&gt;Category Navigation&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;&lt;a href="/jackets"&gt;Jackets&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="/gloves"&gt;Gloves&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="/hats"&gt;Hats&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/nav&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-nav-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the HTML 5 li Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-li-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-li-tag/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 10:00:24 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=177</guid>
		<description><![CDATA[In HTML 5, the li tag defines an item in a list. When Do You Use the li Tag in HTML 5? In HTML 5, you use the li tag with other tags to create either an ordered list ol, &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-li-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>li</code> tag defines an item in a list.</p>
<h2>When Do You Use the <code>li</code> Tag in HTML 5?</h2>
<p>In HTML 5, you use the <code>li</code> tag with other tags to create either an ordered list <code>ol</code>, an unordered list <code>ul</code>, or a <code>menu</code> list. If the order of the listed items is important, then you would choose an ordered list. If the order of the items is not important, use an unordered list. We&#8217;ll talk more about the <code>menu</code> type list in a later post.</p>
<h2>How Is the <code>li</code> Tag Used in HTML 5 Documents?</h2>
<p>Here is a simple example:</p>
<p><code class="example"><br />
&lt;h2&gt;A list where order is important&lt;/h2&gt;<br />
&lt;ol&gt;<br />
&lt;li&gt;Get in the car&lt;/li&gt;<br />
&lt;li&gt;Buckle up&lt;/li&gt;<br />
&lt;li&gt;Put the key in the ignition&lt;/li&gt;<br />
&lt;li&gt;Start the car by turning the key&lt;/li&gt;<br />
&lt;/ol&gt;<br />
&lt;h2&gt;A list where order is not important&lt;/h2&gt;<br />
&lt;ul&gt;<br />
&lt;li&gt;Milk&lt;/li&gt;<br />
&lt;li&gt;Orange Juice&lt;/li&gt;<br />
&lt;li&gt;Bread&lt;/li&gt;<br />
&lt;/ul&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-li-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 img Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-img-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-img-tag/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 10:00:03 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=170</guid>
		<description><![CDATA[In HTML 5, the img tag defines an image. When Do You Use the img Tag in HTML 5? In HTML 5, you may use the img tag to display images in a web page. These images are then called &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-img-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>img</code> tag defines an image.</p>
<h2>When Do You Use the <code>img</code> Tag in HTML 5?</h2>
<p>In HTML 5, you may use the <code>img</code> tag to display images in a web page. These images are then called by the browser when the web page is loaded. The image is not &#8220;embedded&#8221; in the page, but is linked to it. Note that the more images you have on your page, the longer it will take to load the page, as more requests have to be made by the browser.</p>
<p>The following describes the allowable <code>img</code> tag attributes:</p>
<dl>
<dt>alt</dt>
<dd>This defines a short description of the image &#8211; very useful if the image does not display, and useful for screen readers and also search engines</dd>
<dt>height</dt>
<dd>This defines how tall the image is. This can either be a number or percent.</dd>
<dt>ismap</dt>
<dd>This defines the image as a &#8220;server side image map&#8221; &#8211; many links over certain parts of the image</dd>
<dt>src</dt>
<dd>This is the url path to the image</dd>
<dt>usemap</dt>
<dd>This defines the image as a client-side image map &#8211; use this with <code>map</code> and <code>area</code> tags to define the clickable areas.</dd>
<dt>width</dt>
<dd>This defines how wide the image is. This can be either a number or percent.</dd>
</dl>
<h2>How Is the <code>img</code> Tag Used in HTML 5 Documents?</h2>
<p>Here is a simple example:</p>
<p><code class="example"><br />
&lt;img alt="Clown with a red nose" class="interior" height="150" src="/images/clown.jpg" width="120"&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-img-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 hr Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-hr-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-hr-tag/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 10:00:40 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=165</guid>
		<description><![CDATA[In HTML 5, the hr tag displays a horizontal rule, which defines a break in the theme of your content, or to separate two ideas. When Do You Use the hr Tag in HTML 5? In HTML 5, you may &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-hr-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>hr</code> tag displays a horizontal rule, which defines a break in the theme of your content, or to separate two ideas.</p>
<h2>When Do You Use the <code>hr</code> Tag in HTML 5?</h2>
<p>In HTML 5, you may use the <code>hr</code> tag to create a horizontal rule, which is useful for marking a new section of the page. It may be a change in thought, theme, or maybe just serves as a visual divider to the reader. Most browsers will add space before and after, so it adds visual whitespace also, giving the eye a break as it scans down the page.</p>
<p>Note that it can be difficult to style a <code>hr tag</code> with CSS, since browsers tend to do their own thing with it. Note also that in HTML 5, all the inline ways of styling it are not supported, so you may be left with few options to style this. That&#8217;s ok, though, as it&#8217;s just a grey horizontal rule.</p>
<h2>How Is the <code>hr</code> Tag Used in HTML 5 Documents?</h2>
<p>Here is a simple example:</p>
<p><code class="example"><br />
&lt;h2&gt;This title starts one theme in this article&lt;/h2&gt;<br />
&lt;p&gt;Here is the content that defines this theme&lt;/p&gt;<br />
&lt;hr&gt;<br />
&lt;h2&gt;This title starts another theme in this article&lt;/h2&gt;<br />
&lt;p&gt;Here is the content that defines this second theme.&lt;/p&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-hr-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Is the HTML 5 header Tag?</title>
		<link>http://www.websiteinsites.com/what-is-the-html-5-header-tag/</link>
		<comments>http://www.websiteinsites.com/what-is-the-html-5-header-tag/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 10:00:17 +0000</pubDate>
		<dc:creator>Matt Gagnon</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.websiteinsites.com/?p=158</guid>
		<description><![CDATA[In HTML 5, the header tag defines a header section or sections on the page. When Do You Use the header Tag in HTML 5? In HTML 5, you may use the header tag to create heading sections on the &#8230; <a href="http://www.websiteinsites.com/what-is-the-html-5-header-tag/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In HTML 5, the <code>header</code> tag defines a header section or sections on the page.</p>
<h2>When Do You Use the <code>header</code> Tag in HTML 5?</h2>
<p>In HTML 5, you may use the <code>header</code> tag to create heading sections on the page, including one for the logo, site title, and other &#8220;top of the page&#8221; stuff, another <code>header</code> tag for the article title section, and yet another for an <a href="/what-is-the-html-5-aside-tag"><code>aside</code> section (see previous post)</a></p>
<p>The <code>header</code> tag is new to HTML 5, and can also replace the need for a lot of extraneous <code>div</code> tags, thus making our pages download faster and making them more meaningful to boot.</p>
<h2>How Is the <code>header</code> Tag Used in HTML 5 Documents?</h2>
<p>Here is a simple example:</p>
<p><code class="example"><br />
&lt;header&gt;<br />
&lt;h1&gt;Here is the name of my website, or the main topic of this page.&lt;/h1&gt;<br />
&lt;p&gt;Here is a tagline, or short description, of my site&lt;/p&gt;<br />
&lt;/header&gt;<br />
&lt;h2&gt;Here is a secondary topic on this page&lt;/h2&gt;<br />
&lt;p&gt;Here is some text for the secondary topic.&lt;/p&gt;<br />
&lt;aside&gt;<br />
&lt;header&gt;<br />
&lt;h2>Here is the title for the aside.&lt;/h2&gt;<br />
&lt;/header&gt;<br />
&lt;p>Here is the content of the aside.&lt;/p&gt;<br />
&lt;/aside&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.websiteinsites.com/what-is-the-html-5-header-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

