<?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>2-Create-a-Website.Com &#124; How To Create a Website &#187; Coding</title>
	<atom:link href="http://www.2-create-a-website.com/category/basic-coding-features-html-asp-php-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.2-create-a-website.com</link>
	<description>How To Create a Website - 2 Create a Website</description>
	<lastBuildDate>Wed, 02 Jun 2010 08:24:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Include Files</title>
		<link>http://www.2-create-a-website.com/include-files/</link>
		<comments>http://www.2-create-a-website.com/include-files/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:18:29 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How to add a include file to a Php website]]></category>
		<category><![CDATA[how to add a website an include file]]></category>
		<category><![CDATA[How to add Include files]]></category>
		<category><![CDATA[How to add Include files to a Html file]]></category>
		<category><![CDATA[How to include a page in a html page]]></category>
		<category><![CDATA[How to use Include Files on a Php coded website]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=545</guid>
		<description><![CDATA[


 On this article, I will explain how to use Include files on Html, Asp, and Php files.  Most of the paid hosting companies allow you to use include files.  It is one of the best ways to control your fully loaded website.
Include files in Html
In html, you can use a simple code to include [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-2970610913513858";
/* 336x280, created 3/8/10 */
google_ad_slot = "8166216068";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></-> <p>On this article, I will explain how to use Include files on Html, Asp, and Php files.  Most of the paid hosting companies allow you to use include files.  It is one of the best ways to control your fully loaded website.</p>
<h2>Include files in Html</h2>
<p>In html, you can use a simple code to include a file in another one.  So let&#8217;s say you have index.html and you want to add menu.html as an include file; so you would open the source code for index.html and add the following code:</p>
<blockquote><p><span id="KonaBody"><tt>&lt;!--#include virtual="menu.html" --&gt; </tt></span></p></blockquote>
<p><span>If you add this code to your index.html&#8217;s source html code and it doesn&#8217;t work, don&#8217;t give up.  Most hosting companies allow to add include files to only .shtml files.  So what you is easy and simple, just rename your index.html to index.shtml</span></p>
<h2><span>Include files in Asp and Asp.NET</span></h2>
<p><span>In asp it is very easy to add an include file to your source codes.  It is just like the code above for Html files but in a different words.  The code is:</span></p>
<blockquote><p><span>&lt;!&#8211;#include file=&#8221;example.asp&#8221; &#8211;&gt;</span></p></blockquote>
<p><span>YES! there is only one word difference.  Instead of &#8220;virtual&#8221; your going to use &#8220;file&#8221; to include a file.</span></p>
<h2><span>Include files in Php</span></h2>
<p><span>Include files in Php is the same concept.  The code is below:</span></p>
<blockquote><p><span id="KonaBody"><tt>&lt;?php include("example.php"); ?&gt; </tt></span></p></blockquote>
<p><span>You can use any type of files you wish to include.  If you have a page named menu.html  you can include this page into your Php or Asp coded page.  For example:</span></p>
<blockquote><p><span id="KonaBody"><tt>&lt;?php include("menu.html"); ?&gt; </tt></span></p></blockquote>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/include-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add a &#8220;Email me&#8221; Link</title>
		<link>http://www.2-create-a-website.com/how-to-add-a-email-me-link/</link>
		<comments>http://www.2-create-a-website.com/how-to-add-a-email-me-link/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 00:38:35 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How to add "email me" link to your website]]></category>
		<category><![CDATA[How to add a Email me html]]></category>
		<category><![CDATA[How to ahve people email you from your website]]></category>
		<category><![CDATA[How to email your customers]]></category>
		<category><![CDATA[javascript code to your website]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=524</guid>
		<description><![CDATA[


 On this article I will explain the way of adding your email address to your website as a link.  First of all I want to touch the fact that people just write their email as text on there website like:
You can contact me at admin@website-name.com
I find these what so called &#8220;contact&#8221; ways so [...]]]></description>
			<content:encoded><![CDATA[<p>On this article I will explain the way of adding your email address to your website as a link.  First of all I want to touch the fact that people just write their email as text on there website like:</p>
<blockquote><p>You can contact me at admin@website-name.com</p></blockquote>
<p>I find these what so called &#8220;contact&#8221; ways so lame.  They look very eye distracting.  Instead of these you can have a &#8220;Contact&#8221; or &#8220;Email me&#8221; link on your website that would just open Outlook automatically to send a email to you.</p>
<p>You can do these by just adding the following simple link to your website.  It is just like adding a normal hyperlink but instead of http:// on the link placement you add mailto: just like on the following example.</p>
<blockquote><p><textarea cols="90" rows="1"><a href="mailto:youremail@your-domain.com">Contact</a></textarea></p></blockquote>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/how-to-add-a-email-me-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Table Backgrounds</title>
		<link>http://www.2-create-a-website.com/how-to-change-table-backgrounds/</link>
		<comments>http://www.2-create-a-website.com/how-to-change-table-backgrounds/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 03:06:02 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How to change table background]]></category>
		<category><![CDATA[How to create tables]]></category>
		<category><![CDATA[Table background html code]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=486</guid>
		<description><![CDATA[In this article I will explain how you can change your table backgrounds with the bgcolor tag.  It will be very short but I hope I will get my point through.
Example code:
 &#60;table border=&#8221;0&#8243;&#62; &#60;tbody&#62; &#60;tr bgcolor=&#8221;#ffff00&#8243;&#62; &#60;td&#62;This Row is Yellow!&#60;/td&#62; &#60;/tr&#62; &#60;tr bgcolor=&#8221;#808080&#8243;&#62; &#60;td&#62;This Row is Gray!&#60;/td&#62; &#60;/tr&#62; &#60;tr bgcolor=&#8221;#ff0000&#8243;&#62; &#60;td&#62;This Row is Red!&#60;/td&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I will explain how you can change your table backgrounds with the bgcolor tag.  It will be very short but I hope I will get my point through.</p>
<p>Example code:</p>
<p><textarea cols="90" rows="6"> &lt;table border=&#8221;0&#8243;&gt; &lt;tbody&gt; &lt;tr bgcolor=&#8221;#ffff00&#8243;&gt; &lt;td&gt;This Row is Yellow!&lt;/td&gt; &lt;/tr&gt; &lt;tr bgcolor=&#8221;#808080&#8243;&gt; &lt;td&gt;This Row is Gray!&lt;/td&gt; &lt;/tr&gt; &lt;tr bgcolor=&#8221;#ff0000&#8243;&gt; &lt;td&gt;This Row is Red!&lt;/td&gt; &lt;/tr&gt; &lt;tr bgcolor=&#8221;#0000ff&#8221;&gt; &lt;td&gt;This Row is Blue!&lt;/td&gt; &lt;/tr&gt; &lt;tr bgcolor=&#8221;#ffc0cb&#8221;&gt; &lt;td&gt;This Row is Pink!&lt;/td&gt; &lt;/tr&gt; &lt;tr bgcolor=&#8221;#00ff00&#8243;&gt; &lt;td&gt;This Row is Lime!&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt;</textarea></p>
<p>And here is how it will look:</p>
<table border="0">
<tbody>
<tr bgcolor="#ffff00">
<td>This Row is Yellow!</td>
</tr>
<tr bgcolor="#808080">
<td>This Row is Gray!</td>
</tr>
<tr bgcolor="#ff0000">
<td>This Row is Red!</td>
</tr>
<tr bgcolor="#0000ff">
<td>This Row is Blue!</td>
</tr>
<tr bgcolor="#ffc0cb">
<td>This Row is Pink!</td>
</tr>
<tr bgcolor="#00ff00">
<td>This Row is Lime!</td>
</tr>
</tbody>
</table>
<p>That is an basic table code with bgcolor tag applied to it.  You can easily figure out how I used it.  If this article is confusing for you please leave a comment and I will reply with my best!</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/how-to-change-table-backgrounds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Background Color</title>
		<link>http://www.2-create-a-website.com/changing-background-color/</link>
		<comments>http://www.2-create-a-website.com/changing-background-color/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 03:00:24 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Change the color of your website]]></category>
		<category><![CDATA[How to Change your website's Background]]></category>
		<category><![CDATA[Html background code]]></category>
		<category><![CDATA[Html background code for web page]]></category>
		<category><![CDATA[The code to change background]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=484</guid>
		<description><![CDATA[This is a very short article explaining how to change your website&#8217;s background color.  It works with a simple tag which is bgcolor=&#8221;red&#8221; on this article I will use actual color names to make it more understandable.  But you can always use Hex color codes which has more variety of color options.  You can find [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very short article explaining how to change your website&#8217;s background color.  It works with a simple tag which is<em> bgcolor=&#8221;red&#8221;</em> on this article I will use actual color names to make it more understandable.  But you can always use Hex color codes which has more variety of color options.  You can find a Hex color chart on my website by using the search form and search &#8220;Hex&#8221;.</p>
<p><textarea cols="50" rows="1">&lt;body bgcolor=&#8221;red&#8221;&gt;&lt;/texarea&gt;</textarea></p>
<p>You need to add the bgcolor tag to your &lt;body&gt; tag like its shown above.  This will change the background of your webpage to the color you want.</p>
<p>you can also check my <a href="/how-to-change-table-backgrounds">How to Change Table Backgrounds </a>article to learn how this bgcolor tag can apply to table codes.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/changing-background-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add a Scrolling text</title>
		<link>http://www.2-create-a-website.com/how-to-add-a-scrolling-text/</link>
		<comments>http://www.2-create-a-website.com/how-to-add-a-scrolling-text/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 04:52:13 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How to add a marquee scrolling text]]></category>
		<category><![CDATA[How to add a scrolling text to my web page]]></category>
		<category><![CDATA[Marquee Html code for web page]]></category>
		<category><![CDATA[Scrolling text Html code]]></category>
		<category><![CDATA[What is marquee]]></category>
		<category><![CDATA[What is the code for a scrolling text]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=466</guid>
		<description><![CDATA[In this article I will explain how to add a scrolling text to your web page.  This code can be used as a ticker, it is also called marquee text but it is easy to remember it as scrolling text.
Html Code for basic Marquee
Html example of a marquee code
Example of how it will look:
Html example [...]]]></description>
			<content:encoded><![CDATA[<p>In this article I will explain how to add a scrolling text to your web page.  This code can be used as a ticker, it is also called marquee text but it is easy to remember it as scrolling text.</p>
<h2>Html Code for basic Marquee</h2>
<p><textarea cols="90" rows="2"><marquee>Html example of a marquee code</marquee></textarea></p>
<p>Example of how it will look:<br />
<marquee>Html example of a marquee code</marquee></p>
<h2>Code for a scrolling text with background</h2>
<p>You can also add backgrounds to these scrolling texts.  All you have to do is edit the tag bgcolor=&#8221;lime&#8221; you can put color names or hex colors on this field.</p>
<blockquote><p>  You can search up hex to find a Hex color chart on my website.</p></blockquote>
<p><textarea cols="90" rows="2"> <marquee bgcolor="lime">Html example of a marquee code </marquee></textarea></p>
<p>Example of how it will look:<br />
<marquee bgcolor="lime">Html example of a marquee code  </marquee></p>
<h2>Code for a scrolling text with background and direction with fixed width</h2>
<p>On this example you can setup the direction the text will scroll and the width of the marquee.  All you have to do is edit the height and width tags in the code.<br />
<textarea cols="90" rows="2"> <marquee height="100" width="150" direction="up" bgcolor="lime">Html example of a marquee code </marquee></textarea></p>
<p>Here is an example of how it will look:<br />
<marquee height="100" width="150" direction="up" bgcolor="lime">Html example of a marquee code </marquee></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/how-to-add-a-scrolling-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to edit Html in Blogger</title>
		<link>http://www.2-create-a-website.com/how-to-edit-html-in-blogger/</link>
		<comments>http://www.2-create-a-website.com/how-to-edit-html-in-blogger/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 03:41:38 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Ready 2 Go Systems]]></category>
		<category><![CDATA[How to add Html code to Blogger]]></category>
		<category><![CDATA[How to change Blogger's template]]></category>
		<category><![CDATA[How to insert Html in Blogger]]></category>
		<category><![CDATA[How to use Blogger blog]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=449</guid>
		<description><![CDATA[Many bloggers wonder if they can actually edit the source HTML code of their Blogger blogs.  Well, to the ones out there waiting for an answer, my answer is YES, absolutely you can.
All you have to do is:
Login to your account.
Go to the Layout tab.
Click &#8220;Edit Html&#8221;
..and there you go, now you can put [...]]]></description>
			<content:encoded><![CDATA[<p>Many bloggers wonder if they can actually edit the source HTML code of their Blogger blogs.  Well, to the ones out there waiting for an answer, my answer is YES, absolutely you can.</p>
<p>All you have to do is:<br />
Login to your account.<br />
Go to the Layout tab.<br />
Click &#8220;Edit Html&#8221;</p>
<p>..and there you go, now you can put in any kind of Html code you want to add to your blog.  One of Blogger&#8217;s nice compabilities is that you don&#8217;t need to know Html coding skills to edit it.  You can use their editor and still add Html codes through the editor.  The best thing about this is that you can drag and drop things and customize your blog.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/how-to-edit-html-in-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is favicon</title>
		<link>http://www.2-create-a-website.com/what-is-favicon/</link>
		<comments>http://www.2-create-a-website.com/what-is-favicon/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 23:38:14 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[How can I make a favicon]]></category>
		<category><![CDATA[How to add a favicon to my web page]]></category>
		<category><![CDATA[How to create a favicon]]></category>
		<category><![CDATA[How to create an favicon image]]></category>
		<category><![CDATA[How to put an favicon to your website]]></category>
		<category><![CDATA[What is a Favicon]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=344</guid>
		<description><![CDATA[Having a favicon for your website is very important.  A favicon is a little graphic that appears on the address bar before your url.  Also, a favicon is an icon that represents your website on a users Favorites list or Bookmark list.
How to create a Favicon
Creating a favicon so simple.  Many people mistake it and [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-563" href="http://www.2-create-a-website.com/what-is-favicon/what-is-favicon/"><img class="alignleft size-full wp-image-563" title="what-is-favicon" src="http://www.2-create-a-website.com/wp-content/uploads/2009/04/what-is-favicon11.gif" alt="what-is-favicon" width="414" height="247" /></a>Having a favicon for your website is very important. <span style="color: #888888;"> </span><span style="color: #ff0000;">A favicon is a little graphic that appears on the address bar before your url. </span> Also, a favicon is an icon that represents your website on a users Favorites list or Bookmark list.</p>
<h1>How to create a Favicon</h1>
<p>Creating a favicon so simple.  Many people mistake it and go to use many different kinds of programs.  Any image can be your favicon.  Just use the below code to add a favicon to your website.</p>
<p><textarea cols="80" rows="2">&lt;link rel=&#8221;Shortcut Icon&#8221; href=&#8221;/favicon.ico&#8221; mce_href=&#8221;/favicon.ico&#8221;&gt;</textarea></p>
<p>The above code is a meta tag.  So don&#8217;t forget to add it between your &lt;head&gt; &lt;/head&gt; codes.</p>
<p>You can create a favicon with any kind of an image creator including <span style="color: #000080;">Paint</span> which comes with every computer.  But remember to convert it to an .ico file which you can do so simple at the following url : <span style="color: #ff0000;">http://tools.dynamicdrive.com/favicon/</span></p>
<p><span style="color: #000000;">After you convert your image to an .ico file, the website will give you alink to download the file.  Download the favicon.ico file and upload it to your main directory via FTP.  You can read my FTP article <a title="What is FTP and How does it Work" href="/what-is-ftp-and-how-does-it-work">What is FTP and How does it Work</a> if your not sure about FTP.  It should work fine with the above meta tag being added to your &lt;head&gt; &lt;/head&gt; tags.</span></p>
<p>You can also use the below code to make it very simple if the above code does not work.</p>
<p><textarea cols="80" rows="2">&lt;link rel=&#8221;Shortcut Icon&#8221; href=&#8221;/favicon.ico&#8221;&gt;</textarea></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/what-is-favicon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Header Tag</title>
		<link>http://www.2-create-a-website.com/the-header-tag/</link>
		<comments>http://www.2-create-a-website.com/the-header-tag/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 20:42:17 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How do I put a header into my web page]]></category>
		<category><![CDATA[How to add a header tag to my website]]></category>
		<category><![CDATA[How to add a header tag to your web page]]></category>
		<category><![CDATA[How to insert a header tag]]></category>
		<category><![CDATA[How to insert a header tag to my web page]]></category>
		<category><![CDATA[How to use the header tag]]></category>
		<category><![CDATA[What is header tag]]></category>
		<category><![CDATA[What is the header tag]]></category>
		<category><![CDATA[What is the HTML code to use header tags]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=312</guid>
		<description><![CDATA[The header tag is very simple and easy also.  It helps you to seperate your content into segments and add titles.  On this article I will also explain the importance of the header tag to the Search Engines.
What is the header tag ?
The header tag is basic &#60;h1&#62; code &#60;/h1&#62; to add titles to your [...]]]></description>
			<content:encoded><![CDATA[<p>The header tag is very simple and easy also.  It helps you to seperate your content into segments and add titles.  On this article I will also explain the importance of the header tag to the Search Engines.</p>
<h1>What is the header tag ?</h1>
<p>The header tag is basic &lt;h1&gt; code &lt;/h1&gt; to add titles to your website or divide your content into segments.  There are 6 header tags. &lt;h1&gt; &lt;h2&gt; &lt;h3&gt; &lt;h4&gt; &lt;h5&gt; &lt;h6&gt;  The &lt;h1&gt; tag is the most important one, also it is the biggest one. </p>
<p>The text goes between the &lt;h1&gt; and the &lt;/h1&gt; tag.  &lt;h1&gt; is the biggest and it goes down to &lt;h6&gt; as it is the smallest one.  The header of this paragraph &#8212; What is the Header tag ? &#8212; is &lt;h1&gt; headered.</p>
<h2>This is an example of an &lt;h2&gt; &lt;/h2&gt; tag</h2>
<h4>This is an example of the &lt;h4&gt; &lt;/h4&gt; tag</h4>
<h6>This is an example of a &lt;h6&gt; &lt;/h6&gt; tag</h6>
<h1>What is the importance of these tags to the search engines ?</h1>
<p>Like I explained above, the &lt;h1&gt; tag is the biggest of all tags, it also tells that the text in between &lt;h1&gt; and &lt;/h1&gt; is important.  So if you are making a website about hamsters, you should write like &#8211;How many types of hamsters are there &#8212; to have good search engine results on the keyword &#8220;How many types of hamsters are there&#8221;</p>
<p>It goes down from &lt;h1&gt; to &lt;h6&gt; like the normal use, as the &lt;h1&gt; is the most important one, the &lt;h6&gt; is the least important one to search engines.  However the &lt;h6&gt; is the least important one, it is still important then the normal text you use on your website.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/the-header-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Paragraph HTML Tag</title>
		<link>http://www.2-create-a-website.com/the-paragraph-html-tag/</link>
		<comments>http://www.2-create-a-website.com/the-paragraph-html-tag/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 20:22:09 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Basic HTML]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[How to put a paragraph into my web page]]></category>
		<category><![CDATA[How to start a new paragraph in HTML]]></category>
		<category><![CDATA[How to use paragraph codes]]></category>
		<category><![CDATA[How to use the Paragraph Html tag]]></category>
		<category><![CDATA[What is the code for a paragraph]]></category>
		<category><![CDATA[What is the paragraph code]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=308</guid>
		<description><![CDATA[The paragraph HTML tag is very easy to use and understand.  This article is written to show how simple it is to use the paragraph tag.  It is a basic &#60;p&#62; and &#60;/p&#62; tag.  If you are familiar with HTML codes, you probably got the concept by now.
The &#60;p&#62; code opens a paragraph and the [...]]]></description>
			<content:encoded><![CDATA[<p>The paragraph HTML tag is very easy to use and understand.  This article is written to show how simple it is to use the paragraph tag.  It is a basic &lt;p&gt; and &lt;/p&gt; tag.  If you are familiar with HTML codes, you probably got the concept by now.</p>
<p>The &lt;p&gt; code opens a paragraph and the &lt;/p&gt; code closes a paragraph.  Below I explained with the usual system of mine, the color seperation.  The start of the <span style="color: #ff99cc;">pink</span> color means I used the &lt;p&gt; code to start the paragraph and the end of the <span style="color: #ff99cc;">pink</span> color means I used the &lt;/p&gt; code to end the paragraph.</p>
<p><span style="color: #ff9900;">This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.</span></p>
<p><span style="color: #ff99cc;">This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.</span></p>
<p><span style="color: #ff9900;">This is an example of how to use the paragraph HTML tag.This is an example of how to use the paragraph HTML tag.</span></p>
<p><span style="color: #000000;">I think I made it pretty simple enough so everyone can understand, keep on coding, it will pay back in the future.</span></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/the-paragraph-html-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Youtube videos to your website</title>
		<link>http://www.2-create-a-website.com/how-to-add-youtube-videos-to-your-website/</link>
		<comments>http://www.2-create-a-website.com/how-to-add-youtube-videos-to-your-website/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 00:26:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Media Embeding]]></category>
		<category><![CDATA[How do I add youtube videos to my website]]></category>
		<category><![CDATA[How do I embed youtube videos]]></category>
		<category><![CDATA[how to add a youtube video to your website]]></category>
		<category><![CDATA[How to add youtube videos to my web page]]></category>
		<category><![CDATA[How to add Youtube videos to your website]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=298</guid>
		<description><![CDATA[Adding youtube videos to your website is very and so much simple than any other method. If you have a video I prefer you upload your video to Youtube.com instead of uploading it to your webhost. This will save you alot of disk space and your video can&#8217;t be stolen by other people.
Go to the [...]]]></description>
			<content:encoded><![CDATA[<p>Adding youtube videos to your website is very and so much simple than any other method. If you have a video I prefer you upload your video to Youtube.com instead of uploading it to your webhost. This will save you alot of disk space and your video can&#8217;t be stolen by other people.</p>
<p>Go to the video you want to add on Youtube, on the page you watch the actual video, there will be a box on the right column. Take the <strong>code in the Embed box</strong>, and paste it anywhere in your website that you want.</p>
<p>It sounds very easy because it is. If you want to change the setting of the video for example you want it to start automatically, in the embed code, there will be 2 adress pointing to the Youtube videos source just like http://www.youtube.com/watch?v=KBuTIiS0nig Change the <strong>?v=</strong> part to <strong>/v/</strong> and on the end add <strong><em>&amp;autoplay=1</em></strong> so your video links will look like this http://www.youtube.com/watch<span style="color: #ff0000;">/v/</span>KBuTIiS0nig<span style="color: #ff00ff;">&amp;autoplay=1</span></p>
<p>And that&#8217;s it you good to go!  After you add your video, it will look like this on your website:</p>
<blockquote><p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/h61ffFRFmxw&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/h61ffFRFmxw&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p></blockquote>
<p>You can always edit this code, for example you can set the width and height aswell.<br />
Good luck !</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.2-create-a-website.com/how-to-add-youtube-videos-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
