<?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>Headway Marketing LLC &#187; HTML/CSS</title>
	<atom:link href="http://headwaymarketing.com/topic/sandbox/html-css/feed" rel="self" type="application/rss+xml" />
	<link>http://headwaymarketing.com</link>
	<description>St. Louis Website Design and Internet Marketing Services</description>
	<lastBuildDate>Thu, 02 Sep 2010 19:29:29 +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>Simple HTML Horizontal Menu</title>
		<link>http://headwaymarketing.com/simple-html-horizontal-menu</link>
		<comments>http://headwaymarketing.com/simple-html-horizontal-menu#comments</comments>
		<pubDate>Mon, 21 Dec 2009 20:24:39 +0000</pubDate>
		<dc:creator>Tanner Hobin</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://headwaymarketing.com/?p=262</guid>
		<description><![CDATA[For novice website designers a simple horizontal menu can be pretty daunting. I know it caused me frustrations starting out. In this post we analyze how to create a cross-browser compatible and W3C valid HTML/CSS horizontal menu. Simple HTML Horizontal Menu Demo Link 1 Link 2 Link 3 Link 4 Link 5 Simple HTML Horizontal [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://headwaymarketing.com/simple-horizontal-menu"><img src="http://headwaymarketing.com/wp-content/uploads/2009/12/icon_htmlcss.jpg" alt="Simple HTML Horizontal Menu" title="Simple HTML Horizontal Menu" width="125" height="125" class="alignleft size-full wp-image-265" /></a>For novice <a href="/services/website-design" title="St. Louis Website Designer">website designers</a> a simple horizontal menu can be pretty daunting. I know it caused me frustrations starting out. In this post we analyze how to create a cross-browser compatible and <a href="http://validator.w3.org/" target="_blank"><abbr title="World Wide Web Consortium">W3C</abbr> valid HTML/CSS</a> horizontal menu.</p>
<h2>Simple  HTML Horizontal Menu Demo</h2>
<ul class="horiz_menu_demo">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
<li><a href="#">Link 5</a></li>
</ul>
<h2>Simple HTML Horizontal Menu Code</h2>
<pre><code class="html">&lt;ul class=&quot;menu&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 1&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 2&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 3&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 4&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Link 5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</code></pre>
<pre><code class="css">ul.menu {
	list-style:none; /* remove bullets */
    background:#999;
    overflow:auto; /* span the width of the container */
    padding:0; margin:0; /* reset browser defaults */
    height:100%; /* ie6 fix */
    }
ul.menu li {
	display:inline; /* line-up the list items horizontally */
    padding:0; margin:0; /* again, reset browser defaults */
    }
ul.menu li a {
	padding:10px 20px;
    background:#999;
    color:#fff;
    text-decoration:none;
    display:block; /* block it baby! */
    float:left; /* float each list item to the left */
    }
ul.menu li a:hover {
	background:#777;
    }
</code></pre>
<h3>Validation and Compatibility</h3>
<ul class="validation_compatibility">
<li class="yes">Valid XHTML 1.0</li>
<li class="yes">Valid CSS</li>
<li class="yes">Internet Explorer 7+ (PC)</li>
<li class="yes">Internet Explorer 6 (PC)</li>
<li class="yes">Firefox 3 (PC)</li>
<li class="yes">Chrome 2 (PC)</li>
<li class="yes">Safari 3 (PC)</li>
</ul>
<h3 class="download_link"><a href="http://headwaymarketing.com/wp-content/uploads/2009/12/simple-html-horizontal-menu.zip" title="Simple HTML Horizontal Menu">Download: <span>Simple HTML Horizontal Menu</span></a></h3>
]]></content:encoded>
			<wfw:commentRss>http://headwaymarketing.com/simple-html-horizontal-menu/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
