<?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>Pro Web Marketing &#187; css</title>
	<atom:link href="http://www.prowebmarketing.com/blog/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.prowebmarketing.com/blog</link>
	<description>Web Development &#38; SEO Experts</description>
	<lastBuildDate>Tue, 10 Jan 2012 15:39:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS and Divs vs Tables</title>
		<link>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables</link>
		<comments>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables#comments</comments>
		<pubDate>Wed, 18 Nov 2009 04:19:37 +0000</pubDate>
		<dc:creator>brad</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[divs]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.prowebmarketing.com/blog/?p=282</guid>
		<description><![CDATA[When it comes to building sites some people are still using tables to create their layouts.  While these still may work they are outdated and can look unprofessional.  This is where CSS and Divs come in.  Not only are they the new and latest design technique but they also can give your site a superior [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to building sites some people are still using tables to create their layouts.  While these still may work they are outdated and can look unprofessional.  This is where CSS and Divs come in.  Not only are they the new and latest design technique but they also can give your site a superior look.  Some other benefits to using CSS and Divs include faster load times, cross-browser compatibility, lower hosting costs, less time spent, consistency maintained, easier for SEO, etc.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-standards%2Fcss-and-divs-vs-tables&amp;title=CSS%20and%20Divs%20vs%20Tables" id="wpa2a_2"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-standards/css-and-divs-vs-tables/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 5 Tips for Readable Code</title>
		<link>http://www.prowebmarketing.com/blog/web-standards/top-5-tips-for-readable-code</link>
		<comments>http://www.prowebmarketing.com/blog/web-standards/top-5-tips-for-readable-code#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:06:43 +0000</pubDate>
		<dc:creator>Pro Web</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://prowebmarketing.com/blog/?p=11</guid>
		<description><![CDATA[As an expert in CSS and XHTML, I am sometimes irked by having to work with or modify sites that have been coded in years past by developers other than myself.  More often than not, they do not adhere to the acceptable web standards that make editing others code much easier.  There are a few [...]]]></description>
			<content:encoded><![CDATA[<p>As an expert in CSS and XHTML, I am sometimes irked by having to work with or modify sites that have been coded in years past by developers other than myself.  More often than not, they do not adhere to the acceptable web standards that make editing others code much easier.  There are a few simple things you can do to make your XHTML much more digestible, and even more search engine friendly!<span id="more-11"></span></p>
<h2><strong>5.) Avoid Unnecessary Whitespace</strong></h2>
<p>Your XHTML should not contain any blank lines.  They increase file size, create more junk  for spiders to sift through, and can cause serious headaches for developers.  Avoid spaces at the end of your lines as well.</p>
<h2><strong>4.) Use proper indentation (nesting)</strong></h2>
<p>Using proper nesting can make a huge difference in your code&#8217;s organization, and can even make the coding process easier.</p>
<h2><strong>3.) Comment your code</strong></h2>
<p>Commenting your code might seem unnecessary, as to you, it is most likely self-explanatory.  The aim of code readability, however, is for your code to be easy to navigate for other people.  Be sure to create short comments in your code that indicate function.  You may wish to leave these out in the production version of your code, as they do increase file size.</p>
<h2><strong>2.) Always use proper casing</strong></h2>
<p>In XHTML, all tags should be lowercase.  In CSS, there is no declared casing syntax, but a naming convention should be followed consistently.  I prefer to use camel case.  A class name, for example, might be .sampleClass.</p>
<h2><strong>1.) Separate presentation from content</strong></h2>
<p>Your XHTML documents should be very small!  If you can avoid using an extra tag in your XHTML document, please do.  Use CSS and Javascript to their full potentials, and always use external scripting and styles.  This is extremely important for search engine optimization.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.prowebmarketing.com%2Fblog%2Fweb-standards%2Ftop-5-tips-for-readable-code&amp;title=Top%205%20Tips%20for%20Readable%20Code" id="wpa2a_4"><img src="http://www.prowebmarketing.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.prowebmarketing.com/blog/web-standards/top-5-tips-for-readable-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

