<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>HTML HQ</title>
	<atom:link href="http://htmlhq.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://htmlhq.wordpress.com</link>
	<description>The headquarters of HTML heaven.</description>
	<lastBuildDate>Sat, 05 Jul 2008 15:55:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='htmlhq.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>HTML HQ</title>
		<link>http://htmlhq.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://htmlhq.wordpress.com/osd.xml" title="HTML HQ" />
	<atom:link rel='hub' href='http://htmlhq.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Your First HTML Page</title>
		<link>http://htmlhq.wordpress.com/2008/07/05/your-first-html-page/</link>
		<comments>http://htmlhq.wordpress.com/2008/07/05/your-first-html-page/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 02:31:00 +0000</pubDate>
		<dc:creator>tomramier</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Lessons]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[first]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[htm]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://htmlhq.wordpress.com/?p=10</guid>
		<description><![CDATA[We are now going to start creating our first HTML page. It will involve your love of cats (whether you have one or not.) This web page will have a title, two paragraphs on how you love cats, and an image of your cat Lulu. Let&#8217;s begin with the title. Open up a Simple Text [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=10&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We are now going to start creating our first HTML page. It will involve your love of cats (whether you have one or not.) This web page will have a title, two paragraphs on how you love cats, and an image of your cat Lulu. Let&#8217;s begin with the title. Open up a Simple Text Editor, like Notepad or SimpleText. Not Rich Text! Now:</p>
<p>First you&#8217;ll need to create your HTML page using this code:<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
This code shows that you have an HTML document, a heading and a body. When you create a new page, there is a title. For instance, in your browser window, it says &#8211; HTML HQ. We want it to say My Love of Cats. So we alter the code, in between the head tags, we put:<br />
&lt;head&gt;<br />
&lt;title&gt;My Love of Cats&lt;/title&gt;<br />
&lt;/head&gt;<br />
We could seperate it for neatness if we wanted to:<br />
&lt;head&gt;<br />
&lt;title&gt;<br />
My Love of Cats<br />
&lt;/title&gt;<br />
&lt;/head&gt;<br />
Still, it&#8217;s all the same. Once you&#8217;ve created your title save the Notepad or whatever as &#8220;Cats.htm&#8221; This will show it up as &#8220;Cats&#8221; but when you click it the browser will show a blank, white page with &#8220;My Love of Cats&#8221; as its title.<br />
Next we&#8217;ll work on a heading. Inside the body tag you&#8217;ll need to put:<br />
&lt;body&gt;<br />
&lt;h1&gt;My Love of Cats&lt;/h1&gt;<br />
&lt;body&gt;<br />
This will create a large black heading that says My Love of Cats. Now for sub-headings you simply increase the size, all the way up to six. For instance, you may do this:<br />
&lt;body&gt;<br />
&lt;h1&gt;My Love of Cats&lt;/h1&gt;<br />
&lt;h4&gt;Boy, do I love them!&lt;/h4&gt;<br />
&lt;/body&gt;<br />
Or even italicize it for extra effect. Now we&#8217;ll begin with the two paragraphs. First you&#8217;ll want to line break.<br />
&lt;body&gt;<br />
&lt;h1&gt;My Love of Cats&lt;/h1&gt;<br />
&lt;h4&gt;Boy, do I love them!&lt;/h4&gt;&lt;br /&gt;<br />
&lt;br /&gt;<br />
&lt;p&gt;I &lt;b&gt;love&lt;/b&gt; cats so much! They are my favorite pet.&lt;/p&gt;<br />
&lt;/body&gt;<br />
Actually, I did a few things here. Don&#8217;t look so confused! I used a line break &lt;br /&gt; or &lt;br&gt;, which is the same effect as pressing enter on the keyboard. The reason I use &lt;br /&gt; is because its a <strong>single tag</strong>, and their close tag may have a slash in front of it. The reason I use that is because in more advanced languages, like XHTML, you need all lowercase (&lt;b&gt; is good, &lt;B&gt; is bad) and you need to close single tags.<br />
Okay, back to HTML. The &lt;p&gt; and &lt;/p&gt; tags mean &#8212; you guessed it &#8212; paragraphs! Each time you use a new paragraph, it automatically &lt;br /&gt;&#8217;s itself and it creates a new one. Continue to do so for another paragraph. Finally, we&#8217;ll work on an image. Make sure to save Cats.htm again.</p>
<p>Images get a little confusing. Its a <strong>single tag</strong> that requires <strong>no closing</strong>, so in this case it doesn&#8217;t need a   /&gt;  . In order to create an image, use the image tag:<br />
&lt;img src=&#8221;"&gt;<br />
This creates an image. You place the image URL between the quotes. Let&#8217;s use Lulu&#8217;s image, http://z.about.com/d/drawsketch/1/0/_/I/lulu_cat.jpg.<br />
&lt;img src=&#8221;http://z.about.com/d/drawsketch/1/0/_/I/lulu_cat.jpg&#8221;&gt;<br />
That displays the image. However, what if the browser doesn&#8217;t support the image and it doesn&#8217;t show up? No matter!<br />
&lt;img src=&#8221;http://z.about.com/d/drawsketch/1/0/_/I/lulu_cat.jpg&#8221; alt=&#8221;Lulu&#8221;&gt;<br />
&lt;alt&gt; defines alternate text in case the browser doesn&#8217;t support the image. So if the image doesn&#8217;t pop up, the word &#8216;Lulu&#8217; will take its place. Alternates may not be images. By the way, you need to put the URL and name in quotes because the things inside the quotes are called <strong>attributes</strong>. You&#8217;ll need to know that for future lessons.</p>
<p>Save Cats.htm again and view it in a browser. Success!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htmlhq.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htmlhq.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htmlhq.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htmlhq.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htmlhq.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=10&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htmlhq.wordpress.com/2008/07/05/your-first-html-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db2b971918be72d8651c50e2f94c5c1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tomramier</media:title>
		</media:content>
	</item>
		<item>
		<title>Tags</title>
		<link>http://htmlhq.wordpress.com/2008/07/02/tags/</link>
		<comments>http://htmlhq.wordpress.com/2008/07/02/tags/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 15:21:16 +0000</pubDate>
		<dc:creator>tomramier</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Lessons]]></category>
		<category><![CDATA[htm]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://htmlhq.wordpress.com/?p=8</guid>
		<description><![CDATA[Tags are the basis of HTML. There are two types of tags: an open tag &#60;, which declares the beginning of a tag, and a closed tag &#62;, which declares the end of a tag. If you wanted text to be bold, you&#8217;d use this tag, the bold tag: &#60;b&#62;TEXTHERE&#60;/b&#62; Would produce: TEXTHERE. There are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=8&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tags are the basis of HTML. There are two types of tags: an open tag <code>&lt;</code>, which declares the beginning of a tag, and a closed tag <code>&gt;</code>, which declares the end of a tag. If you wanted text to be <strong>bold</strong>, you&#8217;d use this tag, the bold tag: &lt;b&gt;TEXTHERE&lt;/b&gt;</p>
<p>Would produce: <strong>TEXTHERE</strong>. There are many different types of tags that you use in HTML, which we&#8217;ll go over more thoroughly in other lessons. Remember, in order to close a tag after you&#8217;re done put a / after the open tag. (&lt;/) There are some exceptions, but keep that as a rule of thumb. These are some text formatting tags:</p>
<p><em>Text Formatting<br />
</em>&lt;b&gt;TEXT&lt;/b&gt; : <strong>TEXT</strong> : Boldface/Strongface<br />
&lt;i&gt;TEXT&lt;/i&gt; : <em>TEXT</em> : Italics/Emphasis<br />
&lt;u&gt;TEXT&lt;/u&gt; : <span style="text-decoration:underline;">TEXT</span> : Underline<br />
&lt;s&gt;TEST&lt;/s&gt; : <span style="text-decoration:line-through;">TEXT</span> : Strikeout</p>
<p>By now you should be able to:</p>
<ul>
<li>Write a one-paragraph excerpt</li>
</ul>
<p>Tomorrow we&#8217;ll go over lots of the other tags that contain your HTML: &lt;html&gt;, &lt;body&gt;, and &lt;head&gt;! So long, and also how to save your HTML piece! Feel free to comment with questions.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htmlhq.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htmlhq.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htmlhq.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htmlhq.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htmlhq.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=8&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htmlhq.wordpress.com/2008/07/02/tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db2b971918be72d8651c50e2f94c5c1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tomramier</media:title>
		</media:content>
	</item>
		<item>
		<title>Introductory</title>
		<link>http://htmlhq.wordpress.com/2008/07/02/introductory/</link>
		<comments>http://htmlhq.wordpress.com/2008/07/02/introductory/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 01:31:28 +0000</pubDate>
		<dc:creator>tomramier</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://htmlhq.wordpress.com/?p=3</guid>
		<description><![CDATA[This blog goes throughout my journey of teaching HTML to the masses and also learning myself. If I find helpful tips or anything of the sort I&#8217;ll show you. I write all my posts in HTML. I&#8217;m Edd and I&#8217;m here to teach you the fundamentals. While you&#8217;re bored waiting for my first lesson, Tags, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=3&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog goes throughout my journey of teaching HTML to the masses and also learning myself. If I find helpful tips or anything of the sort I&#8217;ll show you. I write all my posts in HTML. I&#8217;m Edd and I&#8217;m here to teach you the fundamentals.</p>
<p>While you&#8217;re bored waiting for my first lesson, <i>Tags</i>, entertain yourself with this pointless button and this seemingly pointless button.</p>
<p><button>Pointless Button</button> <button><b>Seemingly</b> Pointless Button</button></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/htmlhq.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/htmlhq.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/htmlhq.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/htmlhq.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/htmlhq.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=htmlhq.wordpress.com&amp;blog=4120195&amp;post=3&amp;subd=htmlhq&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://htmlhq.wordpress.com/2008/07/02/introductory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/db2b971918be72d8651c50e2f94c5c1b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tomramier</media:title>
		</media:content>
	</item>
	</channel>
</rss>
