<?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>It's Called Web Design &#187; HTML</title>
	<atom:link href="http://itscalledwebdesign.com/category/tutorials/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://itscalledwebdesign.com</link>
	<description>Web 2.0 is so 2004. . . .</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Web Designer Firefox Add-ons</title>
		<link>http://itscalledwebdesign.com/tutorials/web-designer-firefox-add-ons/</link>
		<comments>http://itscalledwebdesign.com/tutorials/web-designer-firefox-add-ons/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 15:56:32 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[develop]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=589</guid>
		<description><![CDATA[If you design websites, these will make your life so much easier. (updated 8-16) First, use Firefox (download here). Next, check out these add-ons. ColorZilla &#8211; let&#8217;s you pick out any color on a webpage and save it&#8217;s RGB or HTML color value. Web Developer&#8217;s Toolbar &#8211; this thing has saved many a day with [...]]]></description>
			<content:encoded><![CDATA[<p>If you design websites, these will make your life so much easier. (updated 8-16)<br />
<span id="more-589"></span><br />
First, use Firefox (<a href="http://www.mozilla.com/products/download.html?product=firefox-3.0.4&#038;os=win&#038;lang=en-US">download here</a>).</p>
<p>Next, check out these add-ons.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/271">ColorZilla</a> &#8211; let&#8217;s you pick out any color on a webpage and save it&#8217;s RGB or HTML color value.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer&#8217;s Toolbar</a> &#8211; this thing has saved many a day with it&#8217;s ruler, div selector and other great features.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> &#8211; I don&#8217;t know how I survived without this.  Offers real-time in-browser editing to any websites HTML, CSS and Javascript.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/1146/">Screengrab!</a> &#8211; Hands down, the best screen shooting program I&#8217;ve found to-date.  You can save or copy the whole webpage, the visible portion, your own selection or the window.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/ie-tab-2-ff-36/">IE Tab</a> &#8211; face it, IE is a pain that has no standards.  After using a standards-compliant browser to design and develop your site, use this plugin with a simple right-click option to view any page in IE.  Then enjoy fixing all of it&#8217;s errors.</p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/3036/">SEO Quake</a> &#8211; a great toolbar to gain knowledge about the Google Page Rank, link structures and other important SEO factors.</p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/web-designer-firefox-add-ons/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Simple Print Button</title>
		<link>http://itscalledwebdesign.com/tutorials/simple-print-button/</link>
		<comments>http://itscalledwebdesign.com/tutorials/simple-print-button/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:57:25 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=415</guid>
		<description><![CDATA[Want to have a &#8220;Print this Page&#8221; button? Use the following code: &#60;form&#62; &#60;input onclick="window.print();return false;" type="button" value=" Print this page " /&#62;&#60;/form&#62; Basically, it&#8217;s just a shortcut to the file print button, but some people can&#8217;t figure that one out I guess. Here&#8217;s what it should look like; You can change the value so [...]]]></description>
			<content:encoded><![CDATA[<p>Want to have a &#8220;Print this Page&#8221; button?<br />
<span id="more-415"></span><br />
Use the following code:</p>
<pre id="line1">&lt;form&gt; &lt;input onclick="window.print();return false;" type="button" value=" Print this page " /&gt;&lt;/form&gt;</pre>
<p>Basically, it&#8217;s just a shortcut to the file print button, but some people can&#8217;t figure that one out I guess.</p>
<p>Here&#8217;s what it should look like;</p>
<form>
<input onclick="window.print();return false;" type="button" value=" Print this page " /></form>
<p>You can change the value so that it says whatever you want.  One option would be the following:</p>
<form>
<input onclick="window.print();return false;" type="button" value=" Go to File, then Print, it's the same thing. (or use CTL+P)" /></form>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/simple-print-button/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The &lt;!DOCTYPE&gt;</title>
		<link>http://itscalledwebdesign.com/tutorials/doctyp/</link>
		<comments>http://itscalledwebdesign.com/tutorials/doctyp/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:50:16 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=380</guid>
		<description><![CDATA[DOCTYPEs that work for validating your code using the W3C validation system.]]></description>
			<content:encoded><![CDATA[<p>DOCTYPEs that work for validating your code using the W3C validation system.<br />
<span id="more-380"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/16-doctype.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Previous in series</a> </div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li>The &lt;!DOCTYPE&gt;</li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/doctyp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intro to validation</title>
		<link>http://itscalledwebdesign.com/tutorials/intro-to-validation/</link>
		<comments>http://itscalledwebdesign.com/tutorials/intro-to-validation/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:47:35 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=376</guid>
		<description><![CDATA[Validating your HTML, or in this case, your XHTML 1.1 Strict, is probably the most important step of a good HTML coder.  This video will introduce you to the concept of properly validating your code.]]></description>
			<content:encoded><![CDATA[<p>Validating your HTML, or in this case, your XHTML 1.1 Strict, is probably the most important step of a good HTML coder.  This video will introduce you to the concept of properly validating your code.<br />
<span id="more-376"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/15-intro_to_validation.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li>Intro to validation</li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/intro-to-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking images</title>
		<link>http://itscalledwebdesign.com/tutorials/linking-images/</link>
		<comments>http://itscalledwebdesign.com/tutorials/linking-images/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:25:12 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=358</guid>
		<description><![CDATA[Putting links and images together.]]></description>
			<content:encoded><![CDATA[<p>Putting links and images together.<br />
<span id="more-358"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/14-img_with_link.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li>Linking images</li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/linking-images/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Relative and absolute file paths</title>
		<link>http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/</link>
		<comments>http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:23:28 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=355</guid>
		<description><![CDATA[Relative and absolute file paths.]]></description>
			<content:encoded><![CDATA[<p>Relative and absolute file paths.<br />
<span id="more-355"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/13-relativeurls.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li>Relative and absolute file paths</li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance of the ALT tag</title>
		<link>http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/</link>
		<comments>http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:21:30 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=351</guid>
		<description><![CDATA[It&#8217;s important to use the the alt tag inside all HTML &#60;img&#62; tags.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s important to use the the <code>alt</code> tag inside all HTML <code>&lt;img&gt;</code> tags.<br />
<span id="more-351"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/12-alt_tag.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li>Importance of the ALT tag</li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to images</title>
		<link>http://itscalledwebdesign.com/tutorials/intro-to-images/</link>
		<comments>http://itscalledwebdesign.com/tutorials/intro-to-images/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:19:22 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=347</guid>
		<description><![CDATA[How to use images in a simple HTML document.]]></description>
			<content:encoded><![CDATA[<p>How to use images in a simple HTML document.<br />
<span id="more-347"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/11-img_tag.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li>Intro to images</li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/intro-to-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anchors and internal document linking</title>
		<link>http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/</link>
		<comments>http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:17:30 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=343</guid>
		<description><![CDATA[Anchors and internal document linking.]]></description>
			<content:encoded><![CDATA[<p>Anchors and internal document linking.<br />
<span id="more-343"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/10-anchors.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-links/' title='Intro to links'>Intro to links</a></li><li>Anchors and internal document linking</li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to links</title>
		<link>http://itscalledwebdesign.com/tutorials/intro-to-links/</link>
		<comments>http://itscalledwebdesign.com/tutorials/intro-to-links/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 16:14:38 +0000</pubDate>
		<dc:creator>Lloyd Armbrust</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=339</guid>
		<description><![CDATA[Basics of linking in HTML.]]></description>
			<content:encoded><![CDATA[<p>Basics of linking in HTML.<br />
<span id="more-339"></span><br />
<embed src="http://itscalledwebdesign.com/files/flvplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="height=360&#038;width=480&#038;file=http://itscalledwebdesign.com/wp-content/uploads/video/09-introtolinks.flv&#038;displaywidth=480&#038;autostart=false&#038;shuffle=false&#038;playlist=false&#038;scroll=true" /></p>
  <div class='series_links'><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Previous in series</a> <a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Next in series</a></div><hr /><div class='series_toc'><h3>Table of contents for Learing HTML 2</h3><ol><li><a href='http://itscalledwebdesign.com/tutorials/basic-html-structure/' title='Basic HTML Structure'>Basic HTML Structure</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-formatting/' title='Text formatting'>Text formatting</a></li><li><a href='http://itscalledwebdesign.com/tutorials/text-headings/' title='Text headings'>Text headings</a></li><li><a href='http://itscalledwebdesign.com/tutorials/paragraphs-in-html/' title='Paragraphs in HTML'>Paragraphs in HTML</a></li><li><a href='http://itscalledwebdesign.com/tutorials/breaks-and-header-rule/' title='Breaks and header rule'>Breaks and header rule</a></li><li><a href='http://itscalledwebdesign.com/tutorials/the-importance-of-spacing/' title='The importance of spacing'>The importance of spacing</a></li><li><a href='http://itscalledwebdesign.com/tutorials/html-entities-2/' title='HTML Entities'>HTML Entities</a></li><li><a href='http://itscalledwebdesign.com/tutorials/lists-or-bullet-points/' title='Lists or bullet points'>Lists or bullet points</a></li><li>Intro to links</li><li><a href='http://itscalledwebdesign.com/tutorials/anchors-and-internal-document-linking/' title='Anchors and internal document linking'>Anchors and internal document linking</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-images/' title='Intro to images'>Intro to images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/importance-of-the-alt-tag/' title='Importance of the ALT tag'>Importance of the ALT tag</a></li><li><a href='http://itscalledwebdesign.com/tutorials/relative-and-absolute-file-paths/' title='Relative and absolute file paths'>Relative and absolute file paths</a></li><li><a href='http://itscalledwebdesign.com/tutorials/linking-images/' title='Linking images'>Linking images</a></li><li><a href='http://itscalledwebdesign.com/tutorials/intro-to-validation/' title='Intro to validation'>Intro to validation</a></li><li><a href='http://itscalledwebdesign.com/tutorials/doctyp/' title='The &lt;!DOCTYPE&gt;'>The &lt;!DOCTYPE&gt;</a></li></ol></div> ]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/intro-to-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

