<?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</title>
	<atom:link href="http://www.2-create-a-website.com/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>Common FTP Commands</title>
		<link>http://www.2-create-a-website.com/common-ftp-commands/</link>
		<comments>http://www.2-create-a-website.com/common-ftp-commands/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:51:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FTP]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=620</guid>
		<description><![CDATA[


 


?
to request help or information about  the 		FTP commands


ascii
to set the mode of file transfer to ASCII
(this is 		the default and transmits seven bits per character)


binary
to set the mode of file transfer to binary
(the 		binary mode transmits all eight bits per byte and thus 		provides less chance of a transmission error and must [...]]]></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></-> <table border="1">
<tbody>
<tr>
<th align="LEFT"><tt>?</tt></th>
<td colspan="2"><em>to request <tt>help</tt> or information about  the 		FTP commands</em></td>
</tr>
<tr>
<th align="LEFT"><tt>ascii</tt></th>
<td colspan="2"><em>to set the mode of file transfer to ASCII<br />
(this is 		the default and transmits seven bits per character)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>binary</tt></th>
<td colspan="2"><em>to set the mode of file transfer to binary<br />
(the 		binary mode transmits all eight bits per byte and thus 		provides less chance of a transmission error and must be 		used to transmit files other than ASCII files)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>bye</tt></th>
<td colspan="2"><em>to exit the FTP environment (same as 		<tt>quit</tt>)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>cd</tt></th>
<td colspan="2"><em>to change directory on the remote machine</em></td>
</tr>
<tr>
<th align="LEFT"><tt>close</tt></th>
<td colspan="2"><em>to terminate a connection with another  computer</em></td>
</tr>
<tr>
<td></td>
<th align="LEFT"><tt>close brubeck</tt></th>
<td>closes the current FTP connection with <tt>brubeck</tt>,<br />
but still leaves you within the FTP environment.</td>
</tr>
<tr>
<th align="LEFT"><tt>delete</tt></th>
<td colspan="2"><em>to delete (remove) a file in the current  remote 		directory (same as <tt>rm</tt> in UNIX)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>get</tt></th>
<td colspan="2"><em>to copy one file from the remote machine 		to the local machine</em></td>
</tr>
<tr>
<td></td>
<th align="LEFT"><tt>get ABC DEF</tt></th>
<td>copies file <tt>ABC</tt> in the current remote directory 			to (or on top of) a file named <tt>DEF</tt> in your 			current local directory.</td>
</tr>
<tr>
<td></td>
<th align="LEFT"><tt>get ABC</tt></th>
<td>copies file <tt>ABC</tt> in the current remote directory 			to (or on top of) a file with the same name, 			<tt>ABC</tt>, in your current local directory.</td>
</tr>
<tr>
<th align="LEFT"><tt>help</tt></th>
<td colspan="2"><em>to request a list of all available 		FTP commands</em></td>
</tr>
<tr>
<th align="LEFT"><tt>lcd</tt></th>
<td colspan="2"><em>to change directory on your local machine 		(same as UNIX <tt>cd</tt>)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>ls</tt></th>
<td colspan="2"><em>to list the names of the files in the current 		remote directory</em></td>
</tr>
<tr>
<th align="LEFT"><tt>mkdir</tt></th>
<td colspan="2"><em>to make a new directory within the current 		remote directory</em></td>
</tr>
<tr>
<th align="LEFT"><tt>mget</tt></th>
<td colspan="2"><em>to copy multiple files from the remote 		machine to the local machine;<br />
you are prompted for a <tt>y</tt>/<tt>n</tt> answer before transferring each file</em></td>
</tr>
<tr>
<td></td>
<th align="LEFT"><tt>mget *</tt></th>
<td>copies all the files in the current remote directory 			to your current local directory, using the same 			filenames.  Notice the use of the wild card 			character, <tt>*</tt>.</td>
</tr>
<tr>
<th align="LEFT"><tt>mput</tt></th>
<td colspan="2"><em>to copy multiple files from the local 		machine to the remote machine;<br />
you are prompted for a <tt>y</tt>/<tt>n</tt> answer before transferring each file</em></td>
</tr>
<tr>
<th align="LEFT"><tt>open</tt></th>
<td colspan="2"><em>to open a connection with another computer</em></td>
</tr>
<tr>
<td></td>
<th align="LEFT"><tt>open brubeck</tt></th>
<td>opens a new FTP connection with <tt>brubeck</tt>;<br />
you must enter a username and password 			for a <tt>brubeck</tt> account<br />
(unless it is to be 			an anonymous connection).</td>
</tr>
<tr>
<th align="LEFT"><tt>put</tt></th>
<td colspan="2"><em>to copy one file from the local machine to 		the remote machine </em></td>
</tr>
<tr>
<th align="LEFT"><tt>pwd</tt></th>
<td colspan="2"><em>to find out the pathname of the current 		directory on the remote machine </em></td>
</tr>
<tr>
<th align="LEFT"><tt>quit</tt></th>
<td colspan="2"><em>to exit the FTP environment (same as 		<tt>bye</tt>)</em></td>
</tr>
<tr>
<th align="LEFT"><tt>rmdir</tt></th>
<td colspan="2"><em>to  to remove (delete) a directory in the 		current remote directory </em></td>
</tr>
</tbody>
</table>
<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/common-ftp-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect FTP Via Command Prompt On Windows</title>
		<link>http://www.2-create-a-website.com/connect-ftp-via-command-prompt-on-windows/</link>
		<comments>http://www.2-create-a-website.com/connect-ftp-via-command-prompt-on-windows/#comments</comments>
		<pubDate>Mon, 31 May 2010 21:23:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FTP]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[connect ftp command]]></category>
		<category><![CDATA[ftp command windows]]></category>
		<category><![CDATA[ftp prompt windows]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=615</guid>
		<description><![CDATA[


 This is an old method. Most person have FTP Clients like Filezilla or WS-FTP or CuteFTP to connect ftp servers. But what if there is an emergency and you have none of them. So here all you gonna need.
HOW TO CONNECT FTP VIA COMMAND PROMPT IN WINDOWS
1. First of all open command prompt by [...]]]></description>
			<content:encoded><![CDATA[<p>This is an old method. Most person have FTP Clients like Filezilla or WS-FTP or CuteFTP to connect ftp servers. But what if there is an emergency and you have none of them. So here all you gonna need.</p>
<p><strong>HOW TO CONNECT FTP VIA COMMAND PROMPT IN WINDOWS</strong></p>
<p>1. First of all open command prompt by following &#8220;Start &gt; All Programs &gt; Accessories &gt; Command Prompt&#8221; or simply use keyboard shurtcut &#8220;Windows + R&#8221; ( Sheme 1 )</p>
<p>2. Type &#8220;ftp&#8221; and press &#8220;Enter&#8221; ( Sheme 1 )</p>
<div class="wp-caption aligncenter" style="width: 430px"><a href="http://www.photocase.org/photos/anonymous_photos/709-connect-ftp-via-command-prompt-windows---sheme-1.jpg"><img title="Connect FTP Via Command Prompt Windows - Sheme 1" src="http://www.photocase.org/photos/anonymous_photos/709-connect-ftp-via-command-prompt-windows---sheme-1.jpg" alt="Sheme 1" width="420" height="218" /></a><p class="wp-caption-text">Sheme 1</p></div>
<p>3. Following screen will prompt to &#8220;ftp&gt;&#8221;, so now we can use ftp commands to access our server. To open a connection we use &#8220;open&#8221; command. Type &#8220;open&#8221; and press &#8220;Enter&#8221; ( Sheme 2 )</p>
<div class="wp-caption aligncenter" style="width: 692px"><a href="http://www.photocase.org/photos/anonymous_photos/710-connect-ftp-via-command-prompt-windows---sheme-2.jpg"><img title="Connect FTP Via Command Prompt Windows - Sheme 2" src="http://www.photocase.org/photos/anonymous_photos/710-connect-ftp-via-command-prompt-windows---sheme-2.jpg" alt="Sheme 2" width="682" height="349" /></a><p class="wp-caption-text">Sheme 2</p></div>
<p>4. Now Ftp Prompt says &#8220;to&#8221;. This means you&#8217;ve to put destination here. Put the destination to your ftp server end press &#8220;Enter&#8221;. Ex: ftp.example.com ( Sheme 3 )</p>
<div class="wp-caption aligncenter" style="width: 691px"><a href="http://www.photocase.org/photos/anonymous_photos/711-connect-ftp-via-command-prompt-windows---sheme-3.jpg"><img title="Connect FTP Via Command Prompt Windows - Sheme 3" src="http://www.photocase.org/photos/anonymous_photos/711-connect-ftp-via-command-prompt-windows---sheme-3.jpg" alt="Sheme 3" width="681" height="348" /></a><p class="wp-caption-text">Sheme 3</p></div>
<p>5. Now check out Sheme 3 and see prompt asks for username. Put your Ftp Username and press &#8220;Enter&#8221; and of course password and press &#8220;Enter&#8221;</p>
<p>P.S. If something goes wrong with login you can always go back to login part with command &#8220;user&#8221; ( Sheme 4)</p>
<p>6. And we have accessed to our FTP Server. ( Sheme 4)</p>
<div class="wp-caption aligncenter" style="width: 693px"><a href="http://www.photocase.org/photos/anonymous_photos/712-connect-ftp-via-command-prompt-windows---sheme-4.jpg"><img title="Connect FTP Via Command Prompt Windows - Sheme 4" src="http://www.photocase.org/photos/anonymous_photos/712-connect-ftp-via-command-prompt-windows---sheme-4.jpg" alt="Sheme 4" width="683" height="348" /></a><p class="wp-caption-text">Sheme 4</p></div>
<p>Basic commands explained below:</p>
<p>&#8220;dir&#8221; : Basic DOS listing command.</p>
<p>&#8220;ls&#8221; : Similar to DOS command &#8220;dir&#8221;. Lists files for current directory without details.</p>
<p>&#8220;cd&#8221; : To change current directory with another one</p>
<p>&#8220;cd ..&#8221; : Up one directory ( DO NOT forget &#8220;blank&#8221; between &#8220;cd&#8221;  and &#8220;..&#8221; )</p>
<p>&#8220;send&#8221; : Uploads a file from local to server</p>
<p>&#8220;get&#8221; : Download file from server to local</p>
<p>&#8220;bye&#8221; : Disconnects from server and quits FTP Prompt</p>
<p>A full list for Ftp commands will be in next chapter.</p>
<p>Hope will be usefull for all.</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/connect-ftp-via-command-prompt-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML a Tag</title>
		<link>http://www.2-create-a-website.com/html-a-tag/</link>
		<comments>http://www.2-create-a-website.com/html-a-tag/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 05:10:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tags]]></category>
		<category><![CDATA[HTML a Tag]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=610</guid>
		<description><![CDATA[HTML &#60;a&#62; Tag





Example
A link to W3Schools.com:



&#60;a href=&#8221;www.2-create-a-website.com&#8221;&#62;Tags&#60;/a&#62;








Definition and Usage
The &#60;a&#62; tag defines an anchor. An anchor can be used in two ways:

To create a link to another document, by using the href attribute
To create a bookmark inside a document, by using the name attribute

The a element is usually referred to as a link or a [...]]]></description>
			<content:encoded><![CDATA[<h1>HTML <span>&lt;a&gt;</span> Tag</h1>
<hr />
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>
<h2>Example</h2>
<p>A link to W3Schools.com:</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;a href=&#8221;www.2-create-a-website.com&#8221;&gt;Tags&lt;/a&gt;</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<hr />
<h2>Definition and Usage</h2>
<p>The &lt;a&gt; tag defines an anchor. An anchor can be used in two ways:</p>
<ol>
<li>To create a link to another document, by using the href attribute</li>
<li>To create a bookmark inside a document, by using the name attribute</li>
</ol>
<p>The a element is usually referred to as a link or a hyperlink.</p>
<p>The most important attribute of the a element is the href attribute, which  indicates the link’s destination.</p>
<p>By default, links will appear as follows in all browsers:</p>
<ul>
<li>An unvisited link is underlined and blue</li>
<li>A visited link is underlined and purple</li>
<li>An active link is underlined and red</li>
</ul>
<hr />
<h2>Browser Support</h2>
<p><img title="Internet Explorer" src="http://www.w3schools.com/images/compatible_ie.gif" border="0" alt="Internet Explorer" width="31" height="30" /> <img title="Firefox" src="http://www.w3schools.com/images/compatible_firefox.gif" border="0" alt="Firefox" width="31" height="30" /> <img title="Opera" src="http://www.w3schools.com/images/compatible_opera.gif" border="0" alt="Opera" width="32" height="30" /> <img title="Google Chrome" src="http://www.w3schools.com/images/compatible_chrome.gif" border="0" alt="Google Chrome" width="31" height="30" /> <img title="Safari" src="http://www.w3schools.com/images/compatible_safari.gif" border="0" alt="Safari" width="28" height="30" /></p>
<p>The &lt;a&gt; tag is supported in all major browsers.</p>
<hr />
<h2>Differences Between HTML and XHTML</h2>
<p>NONE</p>
<hr />
<h2>Tips and Notes</h2>
<p><strong>Tip:</strong> Use CSS to style links!</p>
<hr />
<h2>Optional Attributes</h2>
<p><strong>DTD</strong> indicates in which <a href="http://www.w3schools.com/TAGS/tag_doctype.asp">DTD</a> the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.</p>
<table border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left" valign="top">Attribute</th>
<th width="20%" align="left" valign="top">Value</th>
<th width="55%" align="left" valign="top">Description</th>
<th width="5%" align="left" valign="top">DTD</th>
</tr>
<tr>
<td valign="top">charset</td>
<td valign="top"><em>char_encoding</em></td>
<td valign="top">Specifies the character-set of a linked document</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">coords</td>
<td valign="top"><em>coordinates</em></td>
<td valign="top">Specifies the coordinates of a link</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">href</td>
<td valign="top"><em>URL</em></td>
<td valign="top">Specifies the destination of a link</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">hreflang</td>
<td valign="top"><em>language_code</em></td>
<td valign="top">Specifies the language of a linked document</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">name</td>
<td valign="top"><em>section_name</em></td>
<td valign="top">Specifies the name of an anchor</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">rel</td>
<td valign="top"><em>text</em></td>
<td valign="top">Specifies the relationship between the current document and the linked document</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">rev</td>
<td valign="top"><em>text</em></td>
<td valign="top">Specifies the relationship between the linked document and the current document</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">shape</td>
<td valign="top">default<br />
rect<br />
circle<br />
poly</td>
<td valign="top">Specifies the shape of a link</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">target</td>
<td valign="top">_blank<br />
_parent<br />
_self<br />
_top<br />
<em>framename</em></td>
<td valign="top">Specifies where to open the linked document</td>
<td valign="top">TF</td>
</tr>
</tbody>
</table>
<hr />
<h2>Standard Attributes</h2>
<p>The &lt;a&gt; tag supports the following standard attributes:</p>
<table id="table1" border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left">Attribute</th>
<th width="20%" align="left">Value</th>
<th width="55%" align="left">Description</th>
<th width="5%" align="left">DTD</th>
</tr>
<tr>
<td valign="top">accesskey</td>
<td valign="top"><em>character</em></td>
<td valign="top">Specifies a keyboard shortcut to access an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">class</td>
<td valign="top"><em>classname</em></td>
<td valign="top">Specifies a classname for an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">dir</td>
<td valign="top">rtl<br />
ltr</td>
<td valign="top">Specifies the text direction 	for the content in an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">id</td>
<td valign="top"><em>id</em></td>
<td valign="top">Specifies a unique id for an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">lang</td>
<td valign="top"><em>language_code</em></td>
<td valign="top">Specifies a language code for the content in an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">style</td>
<td valign="top"><em>style_definition</em></td>
<td valign="top">Specifies an inline style for an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">tabindex</td>
<td valign="top"><em>number</em></td>
<td valign="top">Specifies the tab order of an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">title</td>
<td valign="top"><em>text</em></td>
<td valign="top">Specifies extra information about an element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">xml:lang</td>
<td valign="top"><em>language_code</em></td>
<td valign="top">Specifies a language code for the content in an element, in  	XHTML documents</td>
<td valign="top">STF</td>
</tr>
</tbody>
</table>
<p>More information about</p>
<hr />
<h2>Event Attributes</h2>
<p>The &lt;a&gt; tag supports the following event attributes:</p>
<table id="table2" border="1" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<th width="20%" align="left">Attribute</th>
<th width="20%" align="left">Value</th>
<th width="55%" align="left">Description</th>
<th width="5%" align="left">DTD</th>
</tr>
<tr>
<td valign="top">onblur</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when an element loses focus</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onclick</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run on a mouse click</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">ondblclick</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run on a mouse double-click</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onfocus</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when an element gets focus</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onmousedown</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when mouse button is pressed</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onmousemove</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when mouse pointer moves</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onmouseout</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when mouse pointer moves out of an       element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onmouseover</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when mouse pointer moves over an       element</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onmouseup</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when mouse button is released</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onkeydown</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when a key is pressed</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onkeypress</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when a key is pressed and released</td>
<td valign="top">STF</td>
</tr>
<tr>
<td valign="top">onkeyup</td>
<td valign="top"><em>script</em></td>
<td valign="top">Script to be run when a key is released</td>
<td valign="top">STF</td>
</tr>
</tbody>
</table>
<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/html-a-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML  Declaration</title>
		<link>http://www.2-create-a-website.com/html-declaration/</link>
		<comments>http://www.2-create-a-website.com/html-declaration/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 05:06:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tags]]></category>
		<category><![CDATA[HTML  Declaration]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=606</guid>
		<description><![CDATA[HTML &#60;!DOCTYPE&#62; Declaration
Example
An HTML document with a doctype of XHTML 1.0 Transitional:



&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD  	XHTML 1.0 Transitional//EN&#8221;
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;Title of the document&#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
The content of the document&#8230;&#8230;
&#60;/body&#62;
&#60;/html&#62;




Definition and Usage
The doctype declaration should be the very first thing in an HTML document, before the &#60;html&#62; tag.
The doctype declaration is not an HTML tag; it is an instruction [...]]]></description>
			<content:encoded><![CDATA[<h1>HTML <span>&lt;!DOCTYPE&gt;</span> Declaration</h1>
<h2>Example</h2>
<p>An HTML document with a doctype of XHTML 1.0 Transitional:</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD  	XHTML 1.0 Transitional//EN&#8221;<br />
&#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Title of the document&lt;/title&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
The content of the document&#8230;&#8230;<br />
&lt;/body&gt;</p>
<p>&lt;/html&gt;</td>
</tr>
</tbody>
</table>
<hr />
<h2>Definition and Usage</h2>
<p>The doctype declaration should be the very first thing in an HTML document, before the &lt;html&gt; tag.</p>
<p>The doctype declaration is not an HTML tag; it is an instruction to the web browser about what version of the markup language the page is written in.</p>
<p>The doctype declaration refers to a Document Type Definition (DTD). The DTD  specifies the rules for the markup language, so that the browsers can render the content correctly.</p>
<hr />
<h2>Doctypes Available in the W3C Recommendations</h2>
<h3>HTML 4.01 Strict</h3>
<p>This DTD contains all HTML elements and attributes, but does not include presentational or deprecated elements (like font). Framesets are not allowed.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01//EN&#8221; &#8220;http://www.w3.org/TR/html4/strict.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>HTML 4.01 Transitional</h3>
<p>This DTD contains all HTML elements and attributes, including presentational and deprecated elements (like font). Framesets are not allowed.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/html4/loose.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>HTML 4.01 Frameset</h3>
<p>This DTD is equal to HTML 4.01 Transitional, but allows the use of frameset content.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE HTML PUBLIC &#8220;-//W3C//DTD HTML 4.01 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/html4/frameset.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>XHTML 1.0 Strict</h3>
<p>This DTD contains all HTML elements and attributes, but does not include presentational or deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>XHTML 1.0 Transitional</h3>
<p>This DTD contains all HTML elements and attributes, including presentational and deprecated elements (like font). Framesets are not allowed. The markup must also be written as well-formed XML.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>XHTML 1.0 Frameset</h3>
<p>This DTD is equal to XHTML 1.0 Transitional, but allows the use of frameset content.</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Frameset//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<h3>XHTML 1.1</h3>
<p>This DTD is equal to XHTML 1.0 Strict, but allows you to add modules (for example to provide ruby support for East-Asian languages).</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.1//EN&#8221; &#8220;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#8221;&gt;</td>
</tr>
</tbody>
</table>
<hr />
<h2>Tips and Notes</h2>
<p>Use <a href="http://validator.w3.org/" target="_blank">W3C&#8217;s Validator</a> to check that you have written a valid HTML / XHTML document!</p>
<hr /><!-- **** SPOTLIGHTS 1 **** -->Your browser does not support inline frames or is currently configured not to display inline frames.</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/html-declaration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML  Tag</title>
		<link>http://www.2-create-a-website.com/html-tag/</link>
		<comments>http://www.2-create-a-website.com/html-tag/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 05:04:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tags]]></category>
		<category><![CDATA[HTML  Tag]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=604</guid>
		<description><![CDATA[HTML &#60;!&#8211;&#8230;&#8211;&#62; Tag
Example
An HTML comment:



&#60;!&#8211;This is a comment. Comments are not displayed in the browser&#8211;&#62;
&#60;p&#62;This is a paragraph.&#60;/p&#62;



Definition and Usage
The comment tag is used to insert a comment in the source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit [...]]]></description>
			<content:encoded><![CDATA[<h1>HTML <span>&lt;!&#8211;&#8230;&#8211;&gt;</span> Tag</h1>
<h2>Example</h2>
<p>An HTML comment:</p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td>&lt;!&#8211;This is a comment. Comments are not displayed in the browser&#8211;&gt;</p>
<p>&lt;p&gt;This is a paragraph.&lt;/p&gt;</td>
</tr>
</tbody>
</table>
<p><strong>Definition and Usage</strong></p>
<p>The comment tag is used to insert a comment in the source code. A comment will be ignored by the browser. You can use comments to explain your code, which can help you when you edit the source code at a later date.</p>
<p>You can also store program-specific information inside comments. In this case they will not be visible for the user, but they are still available to the program. A good practice is to comment the text inside scripts and style elements to prevent older browsers, that do not support scripting or styles, from showing it as plain text.</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/html-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta Tags</title>
		<link>http://www.2-create-a-website.com/meta-tags/</link>
		<comments>http://www.2-create-a-website.com/meta-tags/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 19:35:46 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Cache prevention code]]></category>
		<category><![CDATA[How to add a website description]]></category>
		<category><![CDATA[how to allow robots to cache my web page]]></category>
		<category><![CDATA[How to allow robots to index my page]]></category>
		<category><![CDATA[How to allow search engines to list my web page]]></category>
		<category><![CDATA[How to fix a language problem on a website]]></category>
		<category><![CDATA[How to use meta tags]]></category>
		<category><![CDATA[Html Redirection code]]></category>
		<category><![CDATA[Keywords Meta tag kode]]></category>
		<category><![CDATA[Redirection code]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=548</guid>
		<description><![CDATA[The code for a basic meta tag:
&#60;meta name="" content=""&#62;
or
&#60;meta http-equiv="" content=""&#62;
Meta tags are in your head section of your html document.  The meta tags help the spiders index your page.  You can redirect a webpage with a meta tag, control spiders, prevent certain browsers to function differently with a code and even set your page&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>The code for a basic meta tag:<br />
<code>&lt;meta name="" content=""&gt;</code><br />
or<br />
<code>&lt;meta http-equiv="" content=""&gt;</code></p>
<p>Meta tags are in your head section of your html document.  The meta tags help the spiders index your page.  You can redirect a webpage with a meta tag, control spiders, prevent certain browsers to function differently with a code and even set your page&#8217;s language with it.</p>
<p>Here is a list of interesting meta tags you can observe and use:</p>
<h2>Description Meta tag:</h2>
<p>&lt;meta name=&#8221;description&#8221; content=&#8221;put your page description here&#8221; /&gt;</p>
<p>This is what appears in the search engines as your description, usually right under your page title when listed in search results.</p>
<h2>Keywords Meta tag:</h2>
<p>&lt;meta name=&#8221;keywords&#8221; content=&#8221;put your keywords here&#8221; /&gt;</p>
<p>This code will help you get listed under correct search results.  You should write keywords that best fits your website.  You should also spererate your keywords with a comma. You can use the below example as a resource.</p>
<p>&lt;meta name=&#8221;keywords&#8221; content=&#8221;how to create a free website, get a free website, what is a keyword&#8221; /&gt;</p>
<h2>Redirection code:</h2>
<p><code>&lt;meta http-equiv="refresh" content="2 ; url=anotherpage.html"&gt;</code></p>
<p>The above code is set to refresh the page and redirect it to anotherpage.html in 2 seconds.  You can change these fields according to your needs.</p>
<h2>Cache Prevention code:</h2>
<p><code>&lt;meta http-equiv="pragma" content="no-cache"&gt;</code></p>
<p>This code is useful when you update your pages a lot and you don&#8217;t want someone loading a page that has been cached on their system. It is supposed to keep a browser from caching your page. Some browsers will ignore the code and cache anyway.</p>
<h2>Code to allow Index Follow for Search Engines (Google,Live ect.) :</h2>
<p><code>&lt;meta name="robots" content="index,follow"&gt;</code></p>
<p>This code will basically tell the robots to index whatever they find 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/meta-tags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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 a [...]]]></description>
			<content:encoded><![CDATA[<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>Domain Transfer</title>
		<link>http://www.2-create-a-website.com/how-to-transfer-a-domain/</link>
		<comments>http://www.2-create-a-website.com/how-to-transfer-a-domain/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 00:35:55 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[How can I change my Domain name company]]></category>
		<category><![CDATA[How to change my registrar]]></category>
		<category><![CDATA[How to transfer a domain name]]></category>
		<category><![CDATA[How to transfer an existing domain name]]></category>
		<category><![CDATA[What is Domain transfer]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=542</guid>
		<description><![CDATA[On this article I will explain how to transfer your existing domain to a new registrar.  Every domain registrar has their own way of doing things differently, but I will explain the main process on this article.
What is a Domain Transfer ?
A domain transfer is when you transfer your existing domain name to a new [...]]]></description>
			<content:encoded><![CDATA[<p>On this article I will explain how to transfer your existing domain to a new registrar.  Every domain registrar has their own way of doing things differently, but I will explain the main process on this article.</p>
<h2>What is a Domain Transfer ?</h2>
<p>A domain transfer is when you transfer your existing domain name to a new registrar.</p>
<h2>Why should I transfer my Domain ?</h2>
<p>There might be many reasons for this cause.  Most popular one might be the price of the domain name and what the registrar offers you.  For example if you pay $10 for a domain name in a registrar, and get basic features, and if you pay $7 at another company and get the same features then you might think of transfering your domain name.  Sometimes the customer care and the user interfrence have affect aswell.</p>
<h2>How to transfer a domain name to another register</h2>
<p>FIrst, you need to have an account at the new registrar your planning to transfer your existing domain to.  Then you need to find the <em>Authorization</em> code (Auth Code) of the domain name your transfering.</p>
<p>When you get this code, go to your new registrar and submit atransfer inquiry, you need your Auth code for this inquiry.  When you submit this inquiry, your new registrar will send an email to your existing registrar informing it about the transfer, you must aprrove the transfer on this email to contuinue.</p>
<p>After this your domain should be able to transfer to your new registrar without any problems.  It might take couple days for you to recieve the  approval email.</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-transfer-a-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a SiteMap ?</title>
		<link>http://www.2-create-a-website.com/what-is-a-sitemap/</link>
		<comments>http://www.2-create-a-website.com/what-is-a-sitemap/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 01:47:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[How can I add sitemap to my site]]></category>
		<category><![CDATA[How to add a sitemap to a wordpress]]></category>
		<category><![CDATA[How to generate Google sitemap]]></category>
		<category><![CDATA[How to make a sitemap]]></category>
		<category><![CDATA[How to use Sitemap]]></category>
		<category><![CDATA[What is a Sitemap]]></category>

		<guid isPermaLink="false">http://www.2-create-a-website.com/?p=535</guid>
		<description><![CDATA[On this article I will explain what a Sitemap is and what is it used for. You can guess that a sitemap is a Map of your Site of course, and that definition is from me to explain in the simplest way. According to Wikipedia, a sitemap is defined as:
The Sitemaps protocol allows a webmaster [...]]]></description>
			<content:encoded><![CDATA[<p>On this article I will explain what a Sitemap is and what is it used for. You can guess that a sitemap is a <em><strong>Map of your Site</strong></em> of course, and that definition is from me to explain in the simplest way. According to Wikipedia, a sitemap is defined as:</p>
<blockquote><p>The Sitemaps protocol allows a webmaster to inform search engines about URLs on a website that are available for crawling.</p></blockquote>
<p><a rel="attachment wp-att-587" href="http://www.2-create-a-website.com/what-is-a-sitemap/google-bot/"><img class="alignleft size-full wp-image-587" title="google-bot" src="http://www.2-create-a-website.com/wp-content/uploads/2009/04/google-bot11.gif" alt="google-bot" width="400" height="400" /></a>Like the definition above, a sitemap informs the search engines about the available urls that can be crawled on your website. Some websites need sitemaps because their website might not be liked by the Google Bots or the Bots might have trouble indexing your website. But this is not the case all the time.</p>
<p>A sitemap makes your website extremely easy to be accessible by search engines. It is usually an XML file.</p>
<p>If you have a flash website, your content is not going to be indexed by the search engines because they can&#8217;t see the links. You can add a sitemap linking to those links and tell the Search Engines that you have those urls on your website so they can come and index them. If your entire content is in flash, then this is not a good option for you, but you can create extra html files to be seen by the search engines.</p>
<p>You can create a sitemap very easily online or with an program that you would download it to your personal computer.</p>
<p>If you are using a ready to go system, check to see if they already have an module for it. For example the Wordpress ready to go system has many plug-ins created by different programmers to generate a sitemap automatically.</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-a-sitemap/feed/</wfw:commentRss>
		<slash:comments>0</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 lame. [...]]]></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>
	</channel>
</rss>
