<?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>webinfinite.com &#187; HTML</title>
	<atom:link href="http://webinfinite.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://webinfinite.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 Jun 2010 16:26:36 +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>Margin Bug in IE 6</title>
		<link>http://webinfinite.com/web-design/margin-bug-in-ie-6/</link>
		<comments>http://webinfinite.com/web-design/margin-bug-in-ie-6/#comments</comments>
		<pubDate>Fri, 21 May 2010 17:43:28 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=464</guid>
		<description><![CDATA[If you have a floated element such as a div and you place margin-right or margin-left on that element, Internet Explorer 6.0 will double that margin value, causing errors in your html layout. To fix this simply add display:inline; to your floating element.? That should fix the issue.]]></description>
			<content:encoded><![CDATA[<p>If  you have a floated element such as a div and you place margin-right or  margin-left on that element, Internet Explorer 6.0 will  double that margin value, causing errors in your html layout. To fix  this simply add <em>display:inline;</em> to your floating element.? That should fix the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/web-design/margin-bug-in-ie-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Lists</title>
		<link>http://webinfinite.com/html/html-lists/</link>
		<comments>http://webinfinite.com/html/html-lists/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 13:29:28 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML List Tags]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=151</guid>
		<description><![CDATA[So you want to learn how to create HTML Lists? That&#8217;s why you are here right? Here is a list of HTML list tags you can use. &#60;ol&#62; Defines an ordered list &#60;ul&#62; Defines an unordered list &#60;li&#62; Defines a list item &#60;dl&#62; Defines a definition list &#60;dt&#62; Defines a term (an item) in a [...]]]></description>
			<content:encoded><![CDATA[<p>So you want to learn how to create HTML Lists? That&#8217;s why you are here right?</p>
<p>Here is a list of HTML list tags you can use.</p>
<table class="reference" border="1" cellspacing="0" width="100%">
<tbody>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_ol.asp">&lt;ol&gt;</a></td>
<td>Defines an ordered list</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_ul.asp">&lt;ul&gt;</a></td>
<td>Defines an unordered list</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_li.asp">&lt;li&gt;</a></td>
<td>Defines a list item</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_dl.asp">&lt;dl&gt;</a></td>
<td>Defines a definition list</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_dt.asp">&lt;dt&gt;</a></td>
<td>Defines a term (an item) in a definition list</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_dd.asp">&lt;dd&gt;</a></td>
<td>Defines a description of a term in a definition list</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_dir.asp">&lt;dir&gt;</a></td>
<td class="deprecated">Deprecated. Use &lt;ul&gt; instead</td>
</tr>
<tr>
<td><a href="http://www.w3schools.com/tags/tag_menu.asp">&lt;menu&gt;</a></td>
<td class="deprecated">Deprecated. Use &lt;ul&gt; instead</td>
</tr>
</tbody>
</table>
<p>Here is an example of an unordered list.</p>
<p>An unordered list starts with the &lt;ul&gt; tag. Each list item starts with the &lt;li&gt; tag.</p>
<p>&lt;ul&gt;<br />
&lt;li&gt;Hockey&lt;/li&gt;<br />
&lt;li&gt;Football&lt;/li&gt;<br />
&lt;/ul&gt;</p>
<p>Result</p>
<ul>
<li>Hockey</li>
<li>Football</li>
</ul>
<p>&lt;ol&gt;<br />
&lt;li&gt;Hockey&lt;/li&gt;<br />
&lt;li&gt;Football&lt;/li&gt;<br />
&lt;/ol&gt;</p>
<p>Result</p>
<ol>
<li>Hockey</li>
<li>Football</li>
</ol>
<p>Experiment with the other tags to see what you get. Good luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/html/html-lists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Broswer Compatiblity with BrowserShots.org</title>
		<link>http://webinfinite.com/web-design/check-broswer-compatiblity-with-browsershotsorg/</link>
		<comments>http://webinfinite.com/web-design/check-broswer-compatiblity-with-browsershotsorg/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 00:48:41 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=125</guid>
		<description><![CDATA[So you&#8217;ve designed a website and now you want to put it online. But wait a minute, your website looks great in Internet Explorer but how does it look in web browsers such as Firefox, Opera, Safari etc..? What do you do now? Do you install all browsers known to man kind? No, there is [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_126" class="wp-caption alignleft" style="width: 310px"><a href="http://browsershots.org/"><img class="size-medium wp-image-126" title="browsershots.org" src="http://webinfinite.com/wp-content/uploads/2009/03/browser-300x43.jpg" alt="broswershots.org" width="300" height="43" /></a><p class="wp-caption-text">broswershots.org</p></div>
<p>So you&#8217;ve designed a website and now you want to put it online. But wait a minute, your website looks great in Internet Explorer but how does it look in web browsers such as Firefox, Opera, Safari etc..? What do you do now? Do you install all browsers known to man kind? No, there is a awesome solution which is online and free.</p>
<p>We use <a title="Broswer Shots" href="http://browsershots.org/" target="_blank">browsershots.org</a> to get our screen shots of our work. It is easy and free to use. All you have to do is enter your website address in the url &#8220;<strong>Enter URL Here:&#8221;</strong> section and select all the browsers you want to use to test your website. Within a few minutes, after you submit your site for testing, you should start to see some images of your site. It&#8217;s a great site for web developers and we recommend you use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/web-design/check-broswer-compatiblity-with-browsershotsorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Tutorials</title>
		<link>http://webinfinite.com/html/learning-html/</link>
		<comments>http://webinfinite.com/html/learning-html/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 17:56:55 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML tutorials]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=84</guid>
		<description><![CDATA[Want to learn how to build a basic website? Than you need to learn HTML. Sure there are some programs out there that can make websites for your however these programs can also cause your website to not perform the way you want it to. My advice is to go learn HTML and the best [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_85" class="wp-caption alignright" style="width: 224px"><img class="size-full wp-image-85" title="w3schools" src="http://webinfinite.com/wp-content/uploads/2009/03/w3schools.jpg" alt="Learn HTML at w3schools.com" width="214" height="41" /><p class="wp-caption-text">HTML tutorials at w3schools.com</p></div>
<p>Want to learn how to build a basic website? Than you need to learn HTML. Sure there are some programs out there that can make websites for your however these programs can also cause your website to not perform the way you want it to.</p>
<p>My advice is to go learn HTML and the best place to learn it is online. You can learn HTML for free at <a title="Learn HTML" href="http://www.w3schools.com/html/default.asp" target="_blank">w3schools.com</a>. I have to say I am pretty experienced in HTML however even I have to go there at times to learn new advancements.? <a title="Learn HTML" href="http://www.w3schools.com/html/default.asp" target="_blank">Click here</a> to visit w3schools.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/html/learning-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
