<?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>J-Henderson &#187; search engine</title>
	<atom:link href="http://www.j-henderson.co.uk/tag/search-engine/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.j-henderson.co.uk</link>
	<description>PHP &#38; HTML Tutorial site</description>
	<lastBuildDate>Sun, 24 Jan 2010 18:03:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Meta tags &#8211; Making your webpage search engine friendly</title>
		<link>http://www.j-henderson.co.uk/2010/01/meta-tags-making-your-webpage-search-engine-friendly/</link>
		<comments>http://www.j-henderson.co.uk/2010/01/meta-tags-making-your-webpage-search-engine-friendly/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 21:43:49 +0000</pubDate>
		<dc:creator>J-Henderson</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[content type]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[friendly]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[Meta tags]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[TUTORIALS]]></category>

		<guid isPermaLink="false">http://www.j-henderson.co.uk/?p=18</guid>
		<description><![CDATA[By now you should have created your first web page and be ready to post this online, however you may be wondering how to go about making your site search engine friendly? Well your anwser is META tags. Lets take a look at a simple HTML page with some meta tags.

&#60;html&#62;
  &#60;head&#62;
   ]]></description>
			<content:encoded><![CDATA[<p>By now you should have created your first web page and be ready to post this online, however you may be wondering how to go about making your site search engine friendly? Well your anwser is META tags. Lets take a look at a simple HTML page with some meta tags.</p>
<pre>
<code>&lt;html&gt;
  &lt;head&gt;
    &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /&gt;

    &lt;meta name="description" content="J-Henderson, Tutorials for PHP and HTML" /&gt;
    &lt;meta name="keywords" content="J-Henderson, Henderson, Tutorials, PHP, HTML, Blog" /&gt;

    &lt;title&gt;My First Page&lt;/title&gt;

  &lt;body&gt;
    &lt;h1&gt;My header&lt;/h1&gt;
      &lt;p&gt;a paragraph&lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;</code>
</pre>
<p>For the most part these are pretty self explanatory:</p>
<p><strong>meta name=&#8221;description&#8221;:</strong> This is the description for your website, you may not realise that this description is shown to the user whenever they use a search engine, the description is normally shown under the main link to your website, and only contains a few paragraphs detailing your site.</p>
<p><strong>meta name=&#8221;keywords&#8221;:</strong> Keywords are what a search engine uses to index your site, using the keywords in the code above if you were to goto your favourite search engine such as google and type in the keywords above this site would show up pretty near the top of the results.</p>
<p>The less obvious meta tag, <code>&lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /&gt;</code> tells our browser what character encoding to use, to be able to validate your web code you will need to tell the browser what character encoding to use, ISO-8859-1 is pretty much the standard encoding you want to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-henderson.co.uk/2010/01/meta-tags-making-your-webpage-search-engine-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
