<?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; first page</title>
	<atom:link href="http://www.j-henderson.co.uk/tag/first-page/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>Your first HTML page</title>
		<link>http://www.j-henderson.co.uk/2010/01/6/</link>
		<comments>http://www.j-henderson.co.uk/2010/01/6/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:27:28 +0000</pubDate>
		<dc:creator>J-Henderson</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[first page]]></category>
		<category><![CDATA[TUTORIALS]]></category>

		<guid isPermaLink="false">http://www.j-henderson.co.uk/?p=6</guid>
		<description><![CDATA[Hello and welcome to the first tutorial for this site, here i will be delving into what i consider to be the foundation of all web design, HTML.
What is HTML?
HTML Stands for HyperText Markup Language. This language is interpreted by Web Browsers and is the main backbone of the internet, You can view the HTML ]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to the first tutorial for this site, here i will be delving into what i consider to be the foundation of all web design, HTML.</p>
<p><strong>What is HTML?</strong></p>
<p>HTML Stands for HyperText Markup Language. This language is interpreted by Web Browsers and is the main backbone of the internet, You can view the HTML in this page by right-clicking and choosing &#8216;View Source Code&#8217;. If you wish to know more about HTML you can find more information here.</p>
<p><strong>Your First Page</strong></p>
<p>Now since your here im guessing you cant wait to get your feet wet. Well all you need to start learning html is this guide and Notepad, now open a new notepad document and copy the code below.</p>
<pre>
<code>&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;My Page &lt;/title&gt;
  &lt;/head&gt;

  &lt;body&gt;
    &lt;h1&gt;My first webpage!&lt;/h1&gt;
      &lt;p&gt;Main content.&lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;</code>
</pre>
<p>Now to save your text document simply goto &#8216;file > save as&#8217; then make sure that the drop down box &#8216;Save as Type&#8217; has &#8216;All Files&#8217; selected. Now just save the document as &#8216;index.html&#8217; without the quotes. Now if you double click the file you just created you will see the page you just created in your default web browser.</p>
<p><strong>Now then what exactly does the code mean? </strong></p>
<p>well <code>&lt;HTML&gt;</code> denotes the begining of our html page, this tag also tells the browser that this is a Hypertext Markup Language document, next we have the <code>&lt;head&gt;</code> tag this does not show any content on the page however this is where our Meta Information, title and javascript would go. The <code>&lt;title&gt;</code> tag denotes the begining of our title which will show on the title bar of the browser, the <code>&lt;/title&gt;</code> tag simply tells the browser where the title ends. next we need to end the head using <code>&lt;/head&gt;</code> and start the main body of the page using <code>&lt;body&gt;</code> the body will contain all of the important stuff that we want to show on our page. Inside the body we have created a header for our content using the <code>&lt;h1&gt;</code> and <code>&lt;h2&gt;</code> tags, next we have a paragraph denoted by <code>&lt;p&gt;</code> and <code>&lt;/p&gt;</code>, and eventually we simply end the body and our page using the <code>&lt;/body&gt;</code> and <code>&lt;/html&gt;</code> tags.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.j-henderson.co.uk/2010/01/6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
