<?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"
	>

<channel>
	<title>tutorial.webaccessories</title>
	<atom:link href="http://tutorial.webaccessories.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://tutorial.webaccessories.org</link>
	<description></description>
	<pubDate>Thu, 16 Oct 2008 15:42:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Coming Soon</title>
		<link>http://tutorial.webaccessories.org/coming-soon/</link>
		<comments>http://tutorial.webaccessories.org/coming-soon/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 15:42:19 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=71</guid>
		<description><![CDATA[More HTML Tutorial
CSS Tutorials
PHP and MySQL Tutorials
Video Tutorials***

]]></description>
			<content:encoded><![CDATA[<div class="announcement_post"><h3>More HTML Tutorial</h3>
<h3 style="padding-left: 30px;"><strong>CSS Tutorials</strong></h3>
<h3 style="padding-left: 30px;"><strong>PHP and MySQL Tutorials</strong></h3>
<h3 style="padding-left: 30px;"><span style="color: #265a9b;">Video Tutorials***</span></h3>
</div>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/coming-soon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Special Text Effects</title>
		<link>http://tutorial.webaccessories.org/special-text-effects/</link>
		<comments>http://tutorial.webaccessories.org/special-text-effects/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 12:30:04 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[Text style]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=63</guid>
		<description><![CDATA[You can affect both the color and the size of text by using the &#60;font&#62;  tag. The two options you can use with font are color and size. As with any  option, you can use these individually or together depending on the effect  desired.
Text Colors
To change the color of a word or [...]]]></description>
			<content:encoded><![CDATA[<p>You can affect both the color and the size of text by using the &lt;font&gt;  tag. The two options you can use with font are color and size. As with any  option, you can use these individually or together depending on the effect  desired.</p>
<h3>Text Colors</h3>
<p>To change the color of a word or phrase, you can use the font option &#8220;color.&#8221;  For example,</p>
<blockquote><p>&lt;font color=&#8221;xxx&#8221;&gt;HOT! HOT! HOT!&lt;/font&gt;</p></blockquote>
<p>where &#8220;xxx&#8221; is replaced by one of the recognized colors. (Remember, you can  refer to the section <a href="http://tutorial.webaccessories.org/html-color/" target="_blank">on browser-safe colors</a> to  determine which of the named colors will most likely be displayed correctly.)</p>
<p>While there are many colors that can now be referred to by name and generally  recognized by both Internet Explorer and Netscape, there are only sixteen colors  that are standard HTML and recognized by the W3C (displayed in the following  paragraph).</p>
<p>The colors as recognized by HTML standard are: <span style="color: #000000;"><strong>Black</strong></span> (#000000), <span style="color: #008000;"><strong class="green">Green</strong></span> (#008000), <span style="color: #c0c0c0;"><strong class="silver">Silver</strong></span> (#C0C0C0), <span style="color: #00ff00;"><strong class="lime">Lime</strong></span> (#00FF00), <span style="color: #808080;"><strong class="gray">Gray</strong></span> (#808080), <span style="color: #808000;"><strong class="olive">Olive</strong></span> (#808000), <span style="color: #ffffff;"><strong class="white">White</strong></span> (#FFFFFF), <span style="color: #ffff00;"><strong class="yellow">Yellow</strong></span> (#FFFF00), <span style="color: #800000;"><strong class="maroon">Maroon</strong></span> (#800000), <span style="color: #000080;"><strong class="navy">Navy</strong></span> (#000080), <span style="color: #ff0000;"><strong class="red">Red</strong></span> (#FF0000), <span style="color: #0000ff;"><strong class="blue">Blue</strong></span> (#0000FF), <span style="color: #800080;"><strong class="purple">Purple</strong></span> (#800080), <span style="color: #000080;"><strong class="teal">Teal</strong></span> (#008080), <span style="color: #ff00ff;"><strong class="fuchsia">Fuchsia</strong></span> (#FF00FF), and <span style="color: #00ffff;"><strong class="aqua">Aqua</strong> </span>(#00FFFF).</p>
<p>NOTE: Be somewhat cautious in using the <span style="color: #0000ff;"><span class="blue">blue</span></span> color since many readers from the earlier days of Netscape assume that the blue  color indicates a link that they may click on.</p>
<h3>Super / Subscript Text</h3>
<p>To superscript characters: &lt;sup&gt;1&lt;/sup&gt;. A &#8220;superscript&#8221; example:</p>
<blockquote><p>See Dante<sup>2</sup></p></blockquote>
<p>To subscript characters: &lt;sub&gt;2&lt;/sub&gt;. A &#8220;subscript&#8221; example:</p>
<blockquote><p>H<sub>2</sub>O</p></blockquote>
<h3>Pre-formatted / Spacing</h3>
<p>As you know, HTML does not recognize word processing features such as multiple  spaces, tabs, and carriage returns. Text contained within the &lt;pre&gt;  … &lt;/pre&gt; tag retains its spacing. Thus, this tag is good to use  when you have simple tabbed columns or unique spacing. The downside to  using this tag for spacing is that it will change the font to a courier  style.</p>
<p>For example to create the following effect, you would place the appropriate  spaces preceding each line in your HTML document, but enclose the entire poem  within the &#8220;pre&#8221; container:</p>
<blockquote>
<pre><tt>Mary had a little lamb
   Its fleece was white as snow
     And everywhere that Mary went
        The lamb was sure to go.</tt></pre>
</blockquote>
<h3>Monospaced / Typewriter Text</h3>
<p>Text contained in the &lt;tt&gt; … &lt;/tt&gt; tags will be monospaced. For  example:</p>
<blockquote><p><tt>Type this text.</tt></p></blockquote>
<h3>Text Alignment</h3>
<p>To center align text:</p>
<blockquote><p>&lt;center&gt;Indiana University School of Nursing&lt;/center&gt;</p></blockquote>
<p>For example:</p>
<p align="center">Indiana University School of Nursing</p>
<p align="right">You can also right align paragraphs of text, such as I&#8217;ve done with this one:  &lt;p align=&#8221;right&#8221;&gt;</p>
<h3>Underlining Text</h3>
<p>Be careful when electing to use underlined text since some readers associate it  with hypertext links. However, when you do decide you must use underlining, the HTML code is:</p>
<blockquote><p>&lt;u&gt;important!&lt;/u&gt;</p></blockquote>
<p>For example: This is <span style="text-decoration: underline;"><span class="underline">important!</span></span></p>
<h3>List Item Styles</h3>
<p>You can change the number style of the list item in a numbered list, as well as  the symbol style of the list item in an unordered list. You can also specify  the value of the starting number of an ordered list. Number styles used with  the ordered list are <strong>A</strong> (upper alpha), <strong>a</strong> (lower alpha), <strong>I</strong> (upper roman), <strong>i</strong> (lower roman), and <strong>1</strong> (arabic numbers). Choices  used with the unordered list are disc, circle, and square. Notice in the  examples that you place the type style or value in the &lt;UL&gt; or &lt;OL&gt;  tag rather than in each list item.</p>
<div>
<table border="0" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<td valign="top"><strong>&#8220;Number&#8221; types:</strong></p>
<p class="regular">&lt;ol type=&#8221;A&#8221;&gt;<br />
&lt;li&gt;Apples<br />
&lt;li&gt;Pears<br />
&lt;li&gt;Kiwis<br />
&lt;/ol&gt;</td>
<td valign="top"><strong>Would result in:</strong></p>
<ol class="regular" type="A">
<li>Apples</li>
<li>Pears</li>
<li>Kiwis</li>
</ol>
</td>
</tr>
<tr>
<td valign="top"><strong>&#8220;Number&#8221; types:</strong></p>
<p class="regular">&lt;ol start=&#8221;13&#8243;&gt;<br />
&lt;li&gt;Apples<br />
&lt;li&gt;Pears<br />
&lt;li&gt;Kiwis<br />
&lt;/ol&gt;</td>
<td valign="top"><strong>Would result in:</strong></p>
<ol class="regular">
<li>Apples</li>
<li>Pears</li>
<li>Kiwis</li>
</ol>
</td>
</tr>
<tr>
<td valign="top"><strong>Bullet types:</strong></p>
<p class="regular">&lt;ul type=&#8221;square&#8221;&gt;<br />
&lt;li&gt;Bananas<br />
&lt;li&gt;Oranges<br />
&lt;li&gt;Grapefruit<br />
&lt;/ul&gt;</td>
<td valign="top"><strong>Would result in:</strong></p>
<ul class="regular" type="square">
<li class="squarebullet">Bananas</li>
<li>Oranges</li>
<li>Grapefruit</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<h3>Block Quotes</h3>
<p>Block quotes indent from both the left and right margins and are used when  citing long pieces of information. For example:</p>
<blockquote><p>&lt;blockquote&gt;&lt;p&gt;Four score and seven years ago, our fathers brought  forth to this continent a new nation, conceived in liberty and dedicated to the  proposition that all men are created equal.&lt;/p&gt;</p></blockquote>
<blockquote><p>&lt;p&gt;&lt;em&gt;from The Gettysburg Address&lt;br&gt;<br />
A. Lincoln&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;</p></blockquote>
<p>Would result in:</p>
<blockquote><p>Four score and seven years ago, our fathers brought forth to this  continent a new nation, conceived in liberty and dedicated to the proposition  that all men are created equal.</p>
<p><em>from The Gettysburg Address<br />
A. Lincoln</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/special-text-effects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wallpaper</title>
		<link>http://tutorial.webaccessories.org/wallpaper/</link>
		<comments>http://tutorial.webaccessories.org/wallpaper/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 11:08:30 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=60</guid>
		<description><![CDATA[Any image that can be viewed in a home page can also be used as &#8220;wallpaper.&#8221;  This is another option which may be used with the body tag. The tag with this  option would read: &#60;body background=&#8221;name.gif&#8221;&#62; where &#8220;name.gif&#8221; is the  name of your image file. You should choose a subtle background [...]]]></description>
			<content:encoded><![CDATA[<p>Any image that can be viewed in a home page can also be used as &#8220;wallpaper.&#8221;  This is another option which may be used with the body tag. The tag with this  option would read: &lt;body background=&#8221;name.gif&#8221;&gt; where &#8220;name.gif&#8221; is the  name of your image file. You should choose a subtle background with few colors  that does not interfere with the presentation of your information.</p>
<p>Many web designers choose to use both a wallpaper as well as a background color  that matches a dominant color in the wallpaper. This causes the browser to  immediately set the color while loading the wallpaper &#8220;on top&#8221; of the color. In  this way, your reader will see a color that links visually to your page without  having to wait on the image to load.</p>
<p>Wallpaper appearance can be enhanced by increasing the brightness and lowering the contrast to soften the image. Keep in mind that many people may have difficulties viewing a home page with a busy or bright background due to physical impairments or hardware incompatibilities.</p>
<p>The background image will automatically tile across the width AND height  of your home page. For example, this <a href="http://tutorial.webaccessories.org/wp-content/uploads/2008/10/beyond_graystone_wallpaper.gif" target="_blank">image</a> will  fill the space behind your home page. The tiling allows you to use a much  smaller graphic than you would need to actually fill the page; thus, your page  loads faster. Most wallpaper images are about 100&#215;100 pixels; a minimum size for most efficient processing is 64 x 32 (w x h).</p>
<p><a name="secret"></a></p>
<p>If you create a wallpaper with an image or design on the background (as  opposed to a pattern or texture only), you will need to experiment with  placement of the design in a graphics package. Generally, you will find that the  overlying design will need to be offset toward the lower right of the  background, rather than centered, in order to achieve the effect of a centered  design behind the page&#8217;s text. Also, when creating wallpapers, make sure that  you do not unintentionally leave a &#8220;seam&#8221; that will give a checkerboard  appearance on your home page.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/wallpaper/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML Color</title>
		<link>http://tutorial.webaccessories.org/html-color/</link>
		<comments>http://tutorial.webaccessories.org/html-color/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 06:58:29 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<category><![CDATA[HTML color]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=51</guid>
		<description><![CDATA[


Color Name
Color HEX
Color


AliceBlue
#F0F8FF



AntiqueWhite
#FAEBD7



Aqua
#00FFFF



Aquamarine
#7FFFD4



Azure
#F0FFFF



Beige
#F5F5DC



Bisque
#FFE4C4



Black
#000000



BlanchedAlmond
#FFEBCD



Blue
#0000FF



BlueViolet
#8A2BE2



Brown
#A52A2A



BurlyWood
#DEB887



CadetBlue
#5F9EA0



Chartreuse
#7FFF00



Chocolate
#D2691E



Coral
#FF7F50



CornflowerBlue
#6495ED



Cornsilk
#FFF8DC



Crimson
#DC143C



Cyan
#00FFFF



DarkBlue
#00008B



DarkCyan
#008B8B



DarkGoldenRod
#B8860B



DarkGray
#A9A9A9



DarkGrey
#A9A9A9



DarkGreen
#006400



DarkKhaki
#BDB76B



DarkMagenta
#8B008B



DarkOliveGreen
#556B2F



Darkorange
#FF8C00



DarkOrchid
#9932CC



DarkRed
#8B0000



DarkSalmon
#E9967A



DarkSeaGreen
#8FBC8F



DarkSlateBlue
#483D8B



DarkSlateGray
#2F4F4F



DarkSlateGrey
#2F4F4F



DarkTurquoise
#00CED1



DarkViolet
#9400D3



DeepPink
#FF1493



DeepSkyBlue
#00BFFF



DimGray
#696969



DimGrey
#696969



DodgerBlue
#1E90FF



FireBrick
#B22222



FloralWhite
#FFFAF0



ForestGreen
#228B22



Fuchsia
#FF00FF



Gainsboro
#DCDCDC



GhostWhite
#F8F8FF



Gold
#FFD700



GoldenRod
#DAA520



Gray
#808080



Grey
#808080



Green
#008000



GreenYellow
#ADFF2F



HoneyDew
#F0FFF0



HotPink
#FF69B4



IndianRed 
#CD5C5C



Indigo 
#4B0082



Ivory
#FFFFF0



Khaki
#F0E68C



Lavender
#E6E6FA



LavenderBlush
#FFF0F5



LawnGreen
#7CFC00



LemonChiffon
#FFFACD



LightBlue
#ADD8E6



LightCoral
#F08080



LightCyan
#E0FFFF



LightGoldenRodYellow
#FAFAD2



LightGray
#D3D3D3



LightGrey
#D3D3D3



LightGreen
#90EE90



LightPink
#FFB6C1



LightSalmon
#FFA07A



LightSeaGreen
#20B2AA



LightSkyBlue
#87CEFA



LightSlateGray
#778899



LightSlateGrey
#778899



LightSteelBlue
#B0C4DE



LightYellow
#FFFFE0



Lime
#00FF00



LimeGreen
#32CD32



Linen
#FAF0E6



Magenta
#FF00FF



Maroon
#800000



MediumAquaMarine
#66CDAA



MediumBlue
#0000CD



MediumOrchid
#BA55D3



MediumPurple
#9370D8



MediumSeaGreen
#3CB371



MediumSlateBlue
#7B68EE



MediumSpringGreen
#00FA9A



MediumTurquoise
#48D1CC



MediumVioletRed
#C71585



MidnightBlue
#191970



MintCream
#F5FFFA



MistyRose
#FFE4E1



Moccasin
#FFE4B5



NavajoWhite
#FFDEAD



Navy
#000080



OldLace
#FDF5E6



Olive
#808000



OliveDrab
#6B8E23



Orange
#FFA500



OrangeRed
#FF4500



Orchid
#DA70D6



PaleGoldenRod
#EEE8AA



PaleGreen
#98FB98



PaleTurquoise
#AFEEEE



PaleVioletRed
#D87093



PapayaWhip
#FFEFD5



PeachPuff
#FFDAB9



Peru
#CD853F



Pink
#FFC0CB



Plum
#DDA0DD



PowderBlue
#B0E0E6



Purple
#800080



Red
#FF0000



RosyBrown
#BC8F8F



RoyalBlue
#4169E1



SaddleBrown
#8B4513



Salmon
#FA8072



SandyBrown
#F4A460



SeaGreen
#2E8B57



SeaShell
#FFF5EE



Sienna
#A0522D



Silver
#C0C0C0



SkyBlue
#87CEEB



SlateBlue
#6A5ACD



SlateGray
#708090



SlateGrey
#708090



Snow
#FFFAFA



SpringGreen
#00FF7F



SteelBlue
#4682B4



Tan
#D2B48C



Teal
#008080



Thistle
#D8BFD8



Tomato
#FF6347



Turquoise
#40E0D0



Violet
#EE82EE



Wheat
#F5DEB3



White
#FFFFFF



WhiteSmoke
#F5F5F5



Yellow
#FFFF00



YellowGreen
#9ACD32




]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="1" cellpadding="3" width="100%" >
<tbody>
<tr>
<th width="25%" align="left">Color Name</th>
<th width="25%" align="left">Color HEX</th>
<th width="50%" align="left">Color</th>
</tr>
<tr>
<td align="left">AliceBlue</td>
<td align="left">#F0F8FF</td>
<td bgcolor="#f0f8ff"></td>
</tr>
<tr>
<td align="left">AntiqueWhite</td>
<td align="left">#FAEBD7</td>
<td bgcolor="#faebd7"></td>
</tr>
<tr>
<td align="left">Aqua</td>
<td align="left">#00FFFF</td>
<td bgcolor="#00ffff"></td>
</tr>
<tr>
<td align="left">Aquamarine</td>
<td align="left">#7FFFD4</td>
<td bgcolor="#7fffd4"></td>
</tr>
<tr>
<td align="left">Azure</td>
<td align="left">#F0FFFF</td>
<td bgcolor="#f0ffff"></td>
</tr>
<tr>
<td align="left">Beige</td>
<td align="left">#F5F5DC</td>
<td bgcolor="#f5f5dc"></td>
</tr>
<tr>
<td align="left">Bisque</td>
<td align="left">#FFE4C4</td>
<td bgcolor="#ffe4c4"></td>
</tr>
<tr>
<td align="left">Black</td>
<td align="left">#000000</td>
<td bgcolor="#000000"></td>
</tr>
<tr>
<td align="left">BlanchedAlmond</td>
<td align="left">#FFEBCD</td>
<td bgcolor="#ffebcd"></td>
</tr>
<tr>
<td align="left">Blue</td>
<td align="left">#0000FF</td>
<td bgcolor="#0000ff"></td>
</tr>
<tr>
<td align="left">BlueViolet</td>
<td align="left">#8A2BE2</td>
<td bgcolor="#8a2be2"></td>
</tr>
<tr>
<td align="left">Brown</td>
<td align="left">#A52A2A</td>
<td bgcolor="#a52a2a"></td>
</tr>
<tr>
<td align="left">BurlyWood</td>
<td align="left">#DEB887</td>
<td bgcolor="#deb887"></td>
</tr>
<tr>
<td align="left">CadetBlue</td>
<td align="left">#5F9EA0</td>
<td bgcolor="#5f9ea0"></td>
</tr>
<tr>
<td align="left">Chartreuse</td>
<td align="left">#7FFF00</td>
<td bgcolor="#7fff00"></td>
</tr>
<tr>
<td align="left">Chocolate</td>
<td align="left">#D2691E</td>
<td bgcolor="#d2691e"></td>
</tr>
<tr>
<td align="left">Coral</td>
<td align="left">#FF7F50</td>
<td bgcolor="#ff7f50"></td>
</tr>
<tr>
<td align="left">CornflowerBlue</td>
<td align="left">#6495ED</td>
<td bgcolor="#6495ed"></td>
</tr>
<tr>
<td align="left">Cornsilk</td>
<td align="left">#FFF8DC</td>
<td bgcolor="#fff8dc"></td>
</tr>
<tr>
<td align="left">Crimson</td>
<td align="left">#DC143C</td>
<td bgcolor="#dc143c"></td>
</tr>
<tr>
<td align="left">Cyan</td>
<td align="left">#00FFFF</td>
<td bgcolor="#00ffff"></td>
</tr>
<tr>
<td align="left">DarkBlue</td>
<td align="left">#00008B</td>
<td bgcolor="#00008b"></td>
</tr>
<tr>
<td align="left">DarkCyan</td>
<td align="left">#008B8B</td>
<td bgcolor="#008b8b"></td>
</tr>
<tr>
<td align="left">DarkGoldenRod</td>
<td align="left">#B8860B</td>
<td bgcolor="#b8860b"></td>
</tr>
<tr>
<td align="left">DarkGray</td>
<td align="left">#A9A9A9</td>
<td bgcolor="#a9a9a9"></td>
</tr>
<tr>
<td align="left">DarkGrey</td>
<td align="left">#A9A9A9</td>
<td bgcolor="#a9a9a9"></td>
</tr>
<tr>
<td align="left">DarkGreen</td>
<td align="left">#006400</td>
<td bgcolor="#006400"></td>
</tr>
<tr>
<td align="left">DarkKhaki</td>
<td align="left">#BDB76B</td>
<td bgcolor="#bdb76b"></td>
</tr>
<tr>
<td align="left">DarkMagenta</td>
<td align="left">#8B008B</td>
<td bgcolor="#8b008b"></td>
</tr>
<tr>
<td align="left">DarkOliveGreen</td>
<td align="left">#556B2F</td>
<td bgcolor="#556b2f"></td>
</tr>
<tr>
<td align="left">Darkorange</td>
<td align="left">#FF8C00</td>
<td bgcolor="#ff8c00"></td>
</tr>
<tr>
<td align="left">DarkOrchid</td>
<td align="left">#9932CC</td>
<td bgcolor="#9932cc"></td>
</tr>
<tr>
<td align="left">DarkRed</td>
<td align="left">#8B0000</td>
<td bgcolor="#8b0000"></td>
</tr>
<tr>
<td align="left">DarkSalmon</td>
<td align="left">#E9967A</td>
<td bgcolor="#e9967a"></td>
</tr>
<tr>
<td align="left">DarkSeaGreen</td>
<td align="left">#8FBC8F</td>
<td bgcolor="#8fbc8f"></td>
</tr>
<tr>
<td align="left">DarkSlateBlue</td>
<td align="left">#483D8B</td>
<td bgcolor="#483d8b"></td>
</tr>
<tr>
<td align="left">DarkSlateGray</td>
<td align="left">#2F4F4F</td>
<td bgcolor="#2f4f4f"></td>
</tr>
<tr>
<td align="left">DarkSlateGrey</td>
<td align="left">#2F4F4F</td>
<td bgcolor="#2f4f4f"></td>
</tr>
<tr>
<td align="left">DarkTurquoise</td>
<td align="left">#00CED1</td>
<td bgcolor="#00ced1"></td>
</tr>
<tr>
<td align="left">DarkViolet</td>
<td align="left">#9400D3</td>
<td bgcolor="#9400d3"></td>
</tr>
<tr>
<td align="left">DeepPink</td>
<td align="left">#FF1493</td>
<td bgcolor="#ff1493"></td>
</tr>
<tr>
<td align="left">DeepSkyBlue</td>
<td align="left">#00BFFF</td>
<td bgcolor="#00bfff"></td>
</tr>
<tr>
<td align="left">DimGray</td>
<td align="left">#696969</td>
<td bgcolor="#696969"></td>
</tr>
<tr>
<td align="left">DimGrey</td>
<td align="left">#696969</td>
<td bgcolor="#696969"></td>
</tr>
<tr>
<td align="left">DodgerBlue</td>
<td align="left">#1E90FF</td>
<td bgcolor="#1e90ff"></td>
</tr>
<tr>
<td align="left">FireBrick</td>
<td align="left">#B22222</td>
<td bgcolor="#b22222"></td>
</tr>
<tr>
<td align="left">FloralWhite</td>
<td align="left">#FFFAF0</td>
<td bgcolor="#fffaf0"></td>
</tr>
<tr>
<td align="left">ForestGreen</td>
<td align="left">#228B22</td>
<td bgcolor="#228b22"></td>
</tr>
<tr>
<td align="left">Fuchsia</td>
<td align="left">#FF00FF</td>
<td bgcolor="#ff00ff"></td>
</tr>
<tr>
<td align="left">Gainsboro</td>
<td align="left">#DCDCDC</td>
<td bgcolor="#dcdcdc"></td>
</tr>
<tr>
<td align="left">GhostWhite</td>
<td align="left">#F8F8FF</td>
<td bgcolor="#f8f8ff"></td>
</tr>
<tr>
<td align="left">Gold</td>
<td align="left">#FFD700</td>
<td bgcolor="#ffd700"></td>
</tr>
<tr>
<td align="left">GoldenRod</td>
<td align="left">#DAA520</td>
<td bgcolor="#daa520"></td>
</tr>
<tr>
<td align="left">Gray</td>
<td align="left">#808080</td>
<td bgcolor="#808080"></td>
</tr>
<tr>
<td align="left">Grey</td>
<td align="left">#808080</td>
<td bgcolor="#808080"></td>
</tr>
<tr>
<td align="left">Green</td>
<td align="left">#008000</td>
<td bgcolor="#008000"></td>
</tr>
<tr>
<td align="left">GreenYellow</td>
<td align="left">#ADFF2F</td>
<td bgcolor="#adff2f"></td>
</tr>
<tr>
<td align="left">HoneyDew</td>
<td align="left">#F0FFF0</td>
<td bgcolor="#f0fff0"></td>
</tr>
<tr>
<td align="left">HotPink</td>
<td align="left">#FF69B4</td>
<td bgcolor="#ff69b4"></td>
</tr>
<tr>
<td align="left">IndianRed </td>
<td align="left">#CD5C5C</td>
<td bgcolor="#cd5c5c"></td>
</tr>
<tr>
<td align="left">Indigo </td>
<td align="left">#4B0082</td>
<td bgcolor="#4b0082"></td>
</tr>
<tr>
<td align="left">Ivory</td>
<td align="left">#FFFFF0</td>
<td bgcolor="#fffff0"></td>
</tr>
<tr>
<td align="left">Khaki</td>
<td align="left">#F0E68C</td>
<td bgcolor="#f0e68c"></td>
</tr>
<tr>
<td align="left">Lavender</td>
<td align="left">#E6E6FA</td>
<td bgcolor="#e6e6fa"></td>
</tr>
<tr>
<td align="left">LavenderBlush</td>
<td align="left">#FFF0F5</td>
<td bgcolor="#fff0f5"></td>
</tr>
<tr>
<td align="left">LawnGreen</td>
<td align="left">#7CFC00</td>
<td bgcolor="#7cfc00"></td>
</tr>
<tr>
<td align="left">LemonChiffon</td>
<td align="left">#FFFACD</td>
<td bgcolor="#fffacd"></td>
</tr>
<tr>
<td align="left">LightBlue</td>
<td align="left">#ADD8E6</td>
<td bgcolor="#add8e6"></td>
</tr>
<tr>
<td align="left">LightCoral</td>
<td align="left">#F08080</td>
<td bgcolor="#f08080"></td>
</tr>
<tr>
<td align="left">LightCyan</td>
<td align="left">#E0FFFF</td>
<td bgcolor="#e0ffff"></td>
</tr>
<tr>
<td align="left">LightGoldenRodYellow</td>
<td align="left">#FAFAD2</td>
<td bgcolor="#fafad2"></td>
</tr>
<tr>
<td align="left">LightGray</td>
<td align="left">#D3D3D3</td>
<td bgcolor="#d3d3d3"></td>
</tr>
<tr>
<td align="left">LightGrey</td>
<td align="left">#D3D3D3</td>
<td bgcolor="#d3d3d3"></td>
</tr>
<tr>
<td align="left">LightGreen</td>
<td align="left">#90EE90</td>
<td bgcolor="#90ee90"></td>
</tr>
<tr>
<td align="left">LightPink</td>
<td align="left">#FFB6C1</td>
<td bgcolor="#ffb6c1"></td>
</tr>
<tr>
<td align="left">LightSalmon</td>
<td align="left">#FFA07A</td>
<td bgcolor="#ffa07a"></td>
</tr>
<tr>
<td align="left">LightSeaGreen</td>
<td align="left">#20B2AA</td>
<td bgcolor="#20b2aa"></td>
</tr>
<tr>
<td align="left">LightSkyBlue</td>
<td align="left">#87CEFA</td>
<td bgcolor="#87cefa"></td>
</tr>
<tr>
<td align="left">LightSlateGray</td>
<td align="left">#778899</td>
<td bgcolor="#778899"></td>
</tr>
<tr>
<td align="left">LightSlateGrey</td>
<td align="left">#778899</td>
<td bgcolor="#778899"></td>
</tr>
<tr>
<td align="left">LightSteelBlue</td>
<td align="left">#B0C4DE</td>
<td bgcolor="#b0c4de"></td>
</tr>
<tr>
<td align="left">LightYellow</td>
<td align="left">#FFFFE0</td>
<td bgcolor="#ffffe0"></td>
</tr>
<tr>
<td align="left">Lime</td>
<td align="left">#00FF00</td>
<td bgcolor="#00ff00"></td>
</tr>
<tr>
<td align="left">LimeGreen</td>
<td align="left">#32CD32</td>
<td bgcolor="#32cd32"></td>
</tr>
<tr>
<td align="left">Linen</td>
<td align="left">#FAF0E6</td>
<td bgcolor="#faf0e6"></td>
</tr>
<tr>
<td align="left">Magenta</td>
<td align="left">#FF00FF</td>
<td bgcolor="#ff00ff"></td>
</tr>
<tr>
<td align="left">Maroon</td>
<td align="left">#800000</td>
<td bgcolor="#800000"></td>
</tr>
<tr>
<td align="left">MediumAquaMarine</td>
<td align="left">#66CDAA</td>
<td bgcolor="#66cdaa"></td>
</tr>
<tr>
<td align="left">MediumBlue</td>
<td align="left">#0000CD</td>
<td bgcolor="#0000cd"></td>
</tr>
<tr>
<td align="left">MediumOrchid</td>
<td align="left">#BA55D3</td>
<td bgcolor="#ba55d3"></td>
</tr>
<tr>
<td align="left">MediumPurple</td>
<td align="left">#9370D8</td>
<td bgcolor="#9370d8"></td>
</tr>
<tr>
<td align="left">MediumSeaGreen</td>
<td align="left">#3CB371</td>
<td bgcolor="#3cb371"></td>
</tr>
<tr>
<td align="left">MediumSlateBlue</td>
<td align="left">#7B68EE</td>
<td bgcolor="#7b68ee"></td>
</tr>
<tr>
<td align="left">MediumSpringGreen</td>
<td align="left">#00FA9A</td>
<td bgcolor="#00fa9a"></td>
</tr>
<tr>
<td align="left">MediumTurquoise</td>
<td align="left">#48D1CC</td>
<td bgcolor="#48d1cc"></td>
</tr>
<tr>
<td align="left">MediumVioletRed</td>
<td align="left">#C71585</td>
<td bgcolor="#c71585"></td>
</tr>
<tr>
<td align="left">MidnightBlue</td>
<td align="left">#191970</td>
<td bgcolor="#191970"></td>
</tr>
<tr>
<td align="left">MintCream</td>
<td align="left">#F5FFFA</td>
<td bgcolor="#f5fffa"></td>
</tr>
<tr>
<td align="left">MistyRose</td>
<td align="left">#FFE4E1</td>
<td bgcolor="#ffe4e1"></td>
</tr>
<tr>
<td align="left">Moccasin</td>
<td align="left">#FFE4B5</td>
<td bgcolor="#ffe4b5"></td>
</tr>
<tr>
<td align="left">NavajoWhite</td>
<td align="left">#FFDEAD</td>
<td bgcolor="#ffdead"></td>
</tr>
<tr>
<td align="left">Navy</td>
<td align="left">#000080</td>
<td bgcolor="#000080"></td>
</tr>
<tr>
<td align="left">OldLace</td>
<td align="left">#FDF5E6</td>
<td bgcolor="#fdf5e6"></td>
</tr>
<tr>
<td align="left">Olive</td>
<td align="left">#808000</td>
<td bgcolor="#808000"></td>
</tr>
<tr>
<td align="left">OliveDrab</td>
<td align="left">#6B8E23</td>
<td bgcolor="#6b8e23"></td>
</tr>
<tr>
<td align="left">Orange</td>
<td align="left">#FFA500</td>
<td bgcolor="#ffa500"></td>
</tr>
<tr>
<td align="left">OrangeRed</td>
<td align="left">#FF4500</td>
<td bgcolor="#ff4500"></td>
</tr>
<tr>
<td align="left">Orchid</td>
<td align="left">#DA70D6</td>
<td bgcolor="#da70d6"></td>
</tr>
<tr>
<td align="left">PaleGoldenRod</td>
<td align="left">#EEE8AA</td>
<td bgcolor="#eee8aa"></td>
</tr>
<tr>
<td align="left">PaleGreen</td>
<td align="left">#98FB98</td>
<td bgcolor="#98fb98"></td>
</tr>
<tr>
<td align="left">PaleTurquoise</td>
<td align="left">#AFEEEE</td>
<td bgcolor="#afeeee"></td>
</tr>
<tr>
<td align="left">PaleVioletRed</td>
<td align="left">#D87093</td>
<td bgcolor="#d87093"></td>
</tr>
<tr>
<td align="left">PapayaWhip</td>
<td align="left">#FFEFD5</td>
<td bgcolor="#ffefd5"></td>
</tr>
<tr>
<td align="left">PeachPuff</td>
<td align="left">#FFDAB9</td>
<td bgcolor="#ffdab9"></td>
</tr>
<tr>
<td align="left">Peru</td>
<td align="left">#CD853F</td>
<td bgcolor="#cd853f"></td>
</tr>
<tr>
<td align="left">Pink</td>
<td align="left">#FFC0CB</td>
<td bgcolor="#ffc0cb"></td>
</tr>
<tr>
<td align="left">Plum</td>
<td align="left">#DDA0DD</td>
<td bgcolor="#dda0dd"></td>
</tr>
<tr>
<td align="left">PowderBlue</td>
<td align="left">#B0E0E6</td>
<td bgcolor="#b0e0e6"></td>
</tr>
<tr>
<td align="left">Purple</td>
<td align="left">#800080</td>
<td bgcolor="#800080"></td>
</tr>
<tr>
<td align="left">Red</td>
<td align="left">#FF0000</td>
<td bgcolor="#ff0000"></td>
</tr>
<tr>
<td align="left">RosyBrown</td>
<td align="left">#BC8F8F</td>
<td bgcolor="#bc8f8f"></td>
</tr>
<tr>
<td align="left">RoyalBlue</td>
<td align="left">#4169E1</td>
<td bgcolor="#4169e1"></td>
</tr>
<tr>
<td align="left">SaddleBrown</td>
<td align="left">#8B4513</td>
<td bgcolor="#8b4513"></td>
</tr>
<tr>
<td align="left">Salmon</td>
<td align="left">#FA8072</td>
<td bgcolor="#fa8072"></td>
</tr>
<tr>
<td align="left">SandyBrown</td>
<td align="left">#F4A460</td>
<td bgcolor="#f4a460"></td>
</tr>
<tr>
<td align="left">SeaGreen</td>
<td align="left">#2E8B57</td>
<td bgcolor="#2e8b57"></td>
</tr>
<tr>
<td align="left">SeaShell</td>
<td align="left">#FFF5EE</td>
<td bgcolor="#fff5ee"></td>
</tr>
<tr>
<td align="left">Sienna</td>
<td align="left">#A0522D</td>
<td bgcolor="#a0522d"></td>
</tr>
<tr>
<td align="left">Silver</td>
<td align="left">#C0C0C0</td>
<td bgcolor="#c0c0c0"></td>
</tr>
<tr>
<td align="left">SkyBlue</td>
<td align="left">#87CEEB</td>
<td bgcolor="#87ceeb"></td>
</tr>
<tr>
<td align="left">SlateBlue</td>
<td align="left">#6A5ACD</td>
<td bgcolor="#6a5acd"></td>
</tr>
<tr>
<td align="left">SlateGray</td>
<td align="left">#708090</td>
<td bgcolor="#708090"></td>
</tr>
<tr>
<td align="left">SlateGrey</td>
<td align="left">#708090</td>
<td bgcolor="#708090"></td>
</tr>
<tr>
<td align="left">Snow</td>
<td align="left">#FFFAFA</td>
<td bgcolor="#fffafa"></td>
</tr>
<tr>
<td align="left">SpringGreen</td>
<td align="left">#00FF7F</td>
<td bgcolor="#00ff7f"></td>
</tr>
<tr>
<td align="left">SteelBlue</td>
<td align="left">#4682B4</td>
<td bgcolor="#4682b4"></td>
</tr>
<tr>
<td align="left">Tan</td>
<td align="left">#D2B48C</td>
<td bgcolor="#d2b48c"></td>
</tr>
<tr>
<td align="left">Teal</td>
<td align="left">#008080</td>
<td bgcolor="#008080"></td>
</tr>
<tr>
<td align="left">Thistle</td>
<td align="left">#D8BFD8</td>
<td bgcolor="#d8bfd8"></td>
</tr>
<tr>
<td align="left">Tomato</td>
<td align="left">#FF6347</td>
<td bgcolor="#ff6347"></td>
</tr>
<tr>
<td align="left">Turquoise</td>
<td align="left">#40E0D0</td>
<td bgcolor="#40e0d0"></td>
</tr>
<tr>
<td align="left">Violet</td>
<td align="left">#EE82EE</td>
<td bgcolor="#ee82ee"></td>
</tr>
<tr>
<td align="left">Wheat</td>
<td align="left">#F5DEB3</td>
<td bgcolor="#f5deb3"></td>
</tr>
<tr>
<td align="left">White</td>
<td align="left">#FFFFFF</td>
<td bgcolor="#ffffff"></td>
</tr>
<tr>
<td align="left">WhiteSmoke</td>
<td align="left">#F5F5F5</td>
<td bgcolor="#f5f5f5"></td>
</tr>
<tr>
<td align="left">Yellow</td>
<td align="left">#FFFF00</td>
<td bgcolor="#ffff00"></td>
</tr>
<tr>
<td align="left">YellowGreen</td>
<td align="left">#9ACD32</td>
<td bgcolor="#9acd32"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/html-color/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Color Effects</title>
		<link>http://tutorial.webaccessories.org/color-effects/</link>
		<comments>http://tutorial.webaccessories.org/color-effects/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 06:55:35 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=49</guid>
		<description><![CDATA[All computer-displayed colors are made up of red-green-blue (rgb) combinations.  This allows colored backgrounds for those pages where you want a simple, solid  color on your home page. These same rgb values also specify the color of text,  links, and &#8220;followed&#8221; links (links that you&#8217;ve clicked then returned to).
When you set colors, [...]]]></description>
			<content:encoded><![CDATA[<p>All computer-displayed colors are made up of <span style="color: #ff0000;">red</span>-<span style="color: #008000;">green</span>-<span style="color: #0000ff;">blue</span> (<span style="color: #ff0000;">r</span><span style="color: #008000;">g</span><span style="color: #0000ff;">b</span>) combinations.  This allows colored backgrounds for those pages where you want a simple, solid  color on your home page. These same rgb values also specify the color of text,  links, and &#8220;followed&#8221; links (links that you&#8217;ve clicked then returned to).</p>
<p>When you set colors, they are set for the entire home page file. Generally, you  can&#8217;t &#8220;mix-and-match.&#8221;</p>
<p>See <a href="http://tutorial.webaccessories.org/html-color/" target="_blank">samples of colors</a> that are use able by all Web browsers.</p>
<p>Warm colors (reds, yellows, oranges) appear to &#8220;approach&#8221; the reader while cool  colors (blues and greens) appear to &#8220;recede from&#8221; the reader. Generally you will want to choose cool colors for backgrounds so that the background does not compete with the foreground and make it more difficult to read.</p>
<p>&#8220;Browser-safe&#8221; colors are those that remain true  across computing platforms and whether viewed in 256 colors, 16- or 24-bit color settings. Other colors may pixelate (appear dotty) or band (ribbons of, rather than blended, color). Browser-safe colors always are combinations of 00, 33, 66, 99, cc, ff. All of the colors identified in the hue and value charts above are browser-safe colors.</p>
<p>Rather than using the &lt;body&gt; tag alone, you may add any combination of  the options for background, text, links, and visited (followed) links color.</p>
<p>NOTE: These options may be placed in any sequence after &#8220;body&#8221;  within the tag.</p>
<p>The tag, with options, would follow this format: &lt;body bgcolor=&#8221;#xxxxxx&#8221;  text=&#8221;#xxxxxx&#8221; link=&#8221;#xxxxxx&#8221; vlink=&#8221;#xxxxxx&#8221;&gt; where &#8220;xxxxxx&#8221; is the rgb  value.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/color-effects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Testing The HTML File</title>
		<link>http://tutorial.webaccessories.org/testing-the-html-file/</link>
		<comments>http://tutorial.webaccessories.org/testing-the-html-file/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:27:43 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[Html testing]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=42</guid>
		<description><![CDATA[Testing your file using Web browsers (e.g., Netscape, Internet Explorer, Firefox), allows you to see a more realistic representation of what your page visitors will see when they view your page on the Web.
NOTE: in the instructions below, &#8220;Web Browser,&#8221; means Internet Explorer, Netscape, or Firefox. Sometimes menu choices are worded slightly differently in the [...]]]></description>
			<content:encoded><![CDATA[<p>Testing your file using Web browsers (e.g., Netscape, Internet Explorer, Firefox), allows you to see a more realistic representation of what your page visitors will see when they view your page on the Web.</p>
<p>NOTE: in the instructions below, &#8220;Web Browser,&#8221; means Internet Explorer, Netscape, or Firefox. Sometimes menu choices are worded slightly differently in the various browsers. Alternate wording choices are in parentheses.</p>
<ol>
<li>To test an HTML Web file, start your Web browser.</li>
<li>Choose FILE : Open (or Open Page).</li>
<li>Click Browse (or Choose File).</li>
<li>Change to the drive and directory where you saved your Web page file. When you see your file, click once on the file name to select it, then click Open.</li>
<li>You will see that the browser has placed the file information in the text box. Click Open (or OK).</li>
</ol>
<p>Now you will see a &#8220;working&#8221; copy of your Web page. If you have correctly placed your images in the same folder / directory, the images will display correctly in the working copy.</p>
<p>Remember, at this point, your HTML document is simply a file on your local computer (hard drive, floppy disk, or other removable storage media). No one can see your &#8220;goof-ups&#8221; except you (of course, they can&#8217;t see your triumphs either!).</p>
<p>To test your file, start your Web browser and choose FILE : File Open.</p>
<p>By changing to the drive and directory where you saved your home page file, you  can select your file and see a &#8220;working&#8221; copy of your home page. Later, after  you have placed your graphic file(s) in the same directory, your graphics will  also correctly display in the working copy.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/testing-the-html-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Saving Your HTML File</title>
		<link>http://tutorial.webaccessories.org/saving-your-html-file/</link>
		<comments>http://tutorial.webaccessories.org/saving-your-html-file/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:23:13 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[save]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=40</guid>
		<description><![CDATA[After you have typed your document, you must save the file. (Be sure also to  save your file periodically as you are working on it. This will prevent your  work from being lost in the event your computer loses power.)
If you are creating your HTML document by manually coding the tags:

Choose FILE : [...]]]></description>
			<content:encoded><![CDATA[<p>After you have typed your document, you must save the file. (Be sure also to  save your file periodically as you are working on it. This will prevent your  work from being lost in the event your computer loses power.)</p>
<p>If you are creating your HTML document by manually coding the tags:</p>
<ol>
<li>Choose FILE : Save As (NOT just SAVE—this would save the  file in a word processing format). (NOTE: After the first time when the  Save As command has recorded the location, file type and file name, you can  safely use the Save button or menu option.)</li>
<li>Change to the drive and directory in which you wish the file saved.</li>
<li>Change the file type to &#8220;TEXT WITH LINE BREAKS (ASCII)&#8221; (&#8221;Text Only&#8221; also  works, but your code, when viewed in the browser&#8217;s view source will continue  past the right margin).</li>
<li>The file name must:</li>
</ol>
<ul class="moreindent">
<li>Have no spaces</li>
<li>Have an &#8220;.html&#8221; extension</li>
<li>Be named &#8220;index.html&#8221; if it is your initial home page.</li>
</ul>
<ol>
<li>Close the document.</li>
</ol>
<p>If you are creating your HTML document in an HTML editor that inserts the  tags for you, choose the &#8220;Save As HTML&#8221; option.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/saving-your-html-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Finishing Your HTML Document</title>
		<link>http://tutorial.webaccessories.org/finishing-your-html-document/</link>
		<comments>http://tutorial.webaccessories.org/finishing-your-html-document/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:20:17 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=38</guid>
		<description><![CDATA[Just as books have appendices, indices, forewords and glossaries, it is  important to include a type of &#8220;footer&#8221; section in your Web page for your user&#8217;s benefit. This type of information can be included in the  &#60;ADDRESS&#62;…&#60;/ADDRESS&#62; tag. The address tag is used for citing  author information. I encourage this series at [...]]]></description>
			<content:encoded><![CDATA[<p>Just as books have appendices, indices, forewords and glossaries, it is  important to include a type of &#8220;footer&#8221; section in your Web page for your user&#8217;s benefit. This type of information can be included in the  &lt;ADDRESS&gt;…&lt;/ADDRESS&gt; tag. The address tag is used for citing  author information. I encourage this series at the bottom of each and every HTML document:</p>
<blockquote><p>&lt;ADDRESS&gt;<br />
Author&#8217;s Name (or Issuing Department)&lt;BR&gt;<br />
Creation Date (or Last Revision Date) (in form of: Jun 10 2008)&lt;BR&gt;<br />
URL: http://www.yoursite.org&lt;BR&gt;<br />
&lt;/ADDRESS&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/finishing-your-html-document/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Converting Graphics</title>
		<link>http://tutorial.webaccessories.org/converting-graphics/</link>
		<comments>http://tutorial.webaccessories.org/converting-graphics/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:18:43 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[HTML Graphics]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=36</guid>
		<description><![CDATA[Most graphics packages allow you to save images in .gif or .jpg format. However, if yours does not, there are packages to do conversions for you. For example, PhotoShop, not only allows you do save the file in the necessary format, but will also allow you to &#8220;clean-up&#8221; the image if desired. In a pinch, [...]]]></description>
			<content:encoded><![CDATA[<p>Most graphics packages allow you to save images in .gif or .jpg format. However, if yours does not, there are packages to do conversions for you. For example, PhotoShop, not only allows you do save the file in the necessary format, but will also allow you to &#8220;clean-up&#8221; the image if desired. In a pinch, you can even  use FrontPage; just insert the image, then right-click the image and choose Picture Properties. Select either .gif or .jpg as the format to convert to.</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/converting-graphics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating Images</title>
		<link>http://tutorial.webaccessories.org/creating-images/</link>
		<comments>http://tutorial.webaccessories.org/creating-images/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:17:45 +0000</pubDate>
		<dc:creator>Kayes</dc:creator>
		
		<category><![CDATA[HTML Tutorial]]></category>

		<category><![CDATA[Picture]]></category>

		<guid isPermaLink="false">http://tutorial.webaccessories.org/?p=34</guid>
		<description><![CDATA[One of the most time-consuming, but personal, solutions is to create a digital  image using a graphics application. There are many possibilities if you choose  this route: PhotoShop®, Illustrator®,  Freehand®, Painter®,  Paintbrush®, MacDraw Pro®, etc.
If the artist in you (or in someone else you know) is better suited to paper,  [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most time-consuming, but personal, solutions is to create a digital  image using a graphics application. There are many possibilities if you choose  this route: PhotoShop<sup>®</sup>, Illustrator<sup>®</sup>,  Freehand<sup>®</sup>, Painter<sup>®</sup>,  Paintbrush<sup>®</sup>, MacDraw Pro<sup>®</sup>, etc.</p>
<p>If the artist in you (or in someone else you know) is better suited to paper,  pen and ink or some other medium (such as photographs or slides), you may use a  scanner to scan your image into a digital format that can be used on your home page.</p>
<p>With flatbed and slide scanners for both Macs and PCs, you can preview your  scans, zoom and do other simple manipulations before choosing the final scan and saving the image in the desired graphic format.</p>
<p>Once your image is in a digital format, you may choose to manipulate the image.  Suppose, for example, that you find an old photograph of your childhood pets,  Dog and Cat. Unfortunately, Bossie the Cow is also in the photograph and your  home page is only about dogs and cats. By using a graphics application, you can  erase Bossie from the picture, paint the barn a brighter red, and erase the  clouds on the horizon!</p>
]]></content:encoded>
			<wfw:commentRss>http://tutorial.webaccessories.org/creating-images/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
