<?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>Web Do&#039;s &#38; Don&#039;ts &#187; Do&#8217;s</title>
	<atom:link href="http://webdosanddonts.com/category/dos/feed" rel="self" type="application/rss+xml" />
	<link>http://webdosanddonts.com</link>
	<description>Tips&#38;Tricks for the modern day web designer</description>
	<lastBuildDate>Thu, 22 Jul 2010 17:30:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Specify unique values for the accesskey attribute</title>
		<link>http://webdosanddonts.com/specify-unique-values-for-the-accesskey-attribute</link>
		<comments>http://webdosanddonts.com/specify-unique-values-for-the-accesskey-attribute#comments</comments>
		<pubDate>Wed, 16 Jun 2010 08:05:01 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[accesskey]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1261</guid>
		<description><![CDATA[If you use accesskeys, make sure the value of the accesskey attribute is unique. If two or more elements share the same accesskey value, browsers will not interpret it consistently.]]></description>
			<content:encoded><![CDATA[<p>If you use <strong>accesskeys</strong>, make sure the value of the accesskey attribute is <strong>unique</strong>. If two or more elements share the same accesskey value, browsers will not interpret it consistently. </p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/specify-unique-values-for-the-accesskey-attribute/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use CSS for generating purely presentational content</title>
		<link>http://webdosanddonts.com/use-css-for-generating-purely-presentational-content</link>
		<comments>http://webdosanddonts.com/use-css-for-generating-purely-presentational-content#comments</comments>
		<pubDate>Wed, 09 Jun 2010 11:42:09 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1256</guid>
		<description><![CDATA[The content property was introduced in CSS 2.1 to add generated content to the :before and :after pseudo-elements. Given that IE 8 also now supports content, we really are getting to the point where can use this CSS feature in our production work. Just be sure to use it only in appropriate circumstances, and be [...]]]></description>
			<content:encoded><![CDATA[<p>The <code>content</code> property was introduced in CSS 2.1 to add generated content to the <code>:before</code> and <code>:after</code> pseudo-elements. Given that IE 8 also now supports <code>content</code>, we really are getting to the point where can use this CSS feature in our production work. Just be sure to use it only in appropriate circumstances, and be mindful of the accessibility implications that generated content still has.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/use-css-for-generating-purely-presentational-content/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove the outline from links on :active only</title>
		<link>http://webdosanddonts.com/remove-the-outline-from-links-on-active-only</link>
		<comments>http://webdosanddonts.com/remove-the-outline-from-links-on-active-only#comments</comments>
		<pubDate>Mon, 17 May 2010 09:32:52 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1248</guid>
		<description><![CDATA[Web developers sometimes hide the outline of image replaced links, but then keyboard users have no way of seeing them when they are tabbing through the page. The trick is simple-remove the outline from links on :active only. By doing this, keyboard users still get the default outline when they tab to a link and [...]]]></description>
			<content:encoded><![CDATA[<p>Web developers sometimes hide the outline of image replaced links, but then keyboard users have no way of seeing them when they are tabbing through the page. The trick is simple-remove the outline from links on :active only. By doing this, keyboard users still get the default outline when they tab to a link and activate the :focus state.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/remove-the-outline-from-links-on-active-only/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specify HTML document’s language</title>
		<link>http://webdosanddonts.com/specify-html-document%e2%80%99s-language</link>
		<comments>http://webdosanddonts.com/specify-html-document%e2%80%99s-language#comments</comments>
		<pubDate>Mon, 19 Apr 2010 10:21:22 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Language]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1158</guid>
		<description><![CDATA[Use the language attribute(s) on the html tag to indicate the language of a HTML document, unless the content is aimed at speakers of more than one language.]]></description>
			<content:encoded><![CDATA[<p>Use the language attribute(s) on the <code>html</code> tag to indicate the language of a HTML document, unless the content is aimed at speakers of more than one language. </p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/specify-html-document%e2%80%99s-language/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make sure your site works with and without the www prefix</title>
		<link>http://webdosanddonts.com/make-sure-your-site-works-with-and-without-the-www-prefix</link>
		<comments>http://webdosanddonts.com/make-sure-your-site-works-with-and-without-the-www-prefix#comments</comments>
		<pubDate>Wed, 31 Mar 2010 09:11:01 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[prefix]]></category>
		<category><![CDATA[redirection]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=250</guid>
		<description><![CDATA[Many websites make the mistake of not making sure the site works without the www prefix. So for instance, if you type sitename.com in your browser, you end up at a dead end. You should make sure the site works with and without the prefix by redirecting traffic.]]></description>
			<content:encoded><![CDATA[<p>Many websites make the mistake of not making sure the site works without the <strong>www prefix</strong>. So for instance, if you type <strong>sitename.com</strong> in your browser, you end up at a dead end. You should make sure the site works with and without the prefix by redirecting traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/make-sure-your-site-works-with-and-without-the-www-prefix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use progressive enhancement instead of graceful degradation</title>
		<link>http://webdosanddonts.com/use-progressive-enhancement-instead-of-graceful-degradation</link>
		<comments>http://webdosanddonts.com/use-progressive-enhancement-instead-of-graceful-degradation#comments</comments>
		<pubDate>Wed, 24 Mar 2010 21:08:49 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[graceful degradation]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[progressive enhancement]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1094</guid>
		<description><![CDATA[It can be said that both progressive enhancement and graceful degradation try to do the same thing: keep our products useful to every user. Progressive enhancement is a more sophisticated and at the same time stable way of assuring that but it takes more time and effort. Graceful degradation can be used more easily as [...]]]></description>
			<content:encoded><![CDATA[<p>It can be said that both progressive enhancement and graceful degradation try to do the same thing: keep our products useful to every user. Progressive enhancement is a more sophisticated and at the same time stable way of assuring that but it takes more time and effort. Graceful degradation can be used more easily as a patch for an already existing product; it means harder maintenance later on, but requires less initial work.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/use-progressive-enhancement-instead-of-graceful-degradation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use the CSS cascade</title>
		<link>http://webdosanddonts.com/use-the-css-cascade</link>
		<comments>http://webdosanddonts.com/use-the-css-cascade#comments</comments>
		<pubDate>Tue, 16 Mar 2010 09:33:58 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Cascade]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=956</guid>
		<description><![CDATA[Many website coders do not make good use of the cascade, ending up with more complicated code. Learn how to use the cascade properly and define the importance of individual styles.]]></description>
			<content:encoded><![CDATA[<p>Many website coders do not make good use of the cascade, ending up with more complicated code. Learn how to use the cascade properly and define the importance of individual styles. </p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/use-the-css-cascade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specify a text colour for img elements</title>
		<link>http://webdosanddonts.com/specify-a-text-colour-for-img-elements</link>
		<comments>http://webdosanddonts.com/specify-a-text-colour-for-img-elements#comments</comments>
		<pubDate>Wed, 03 Mar 2010 08:59:09 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=936</guid>
		<description><![CDATA[Some browsers display the alt text when an img element is not displayed. The alt text can sometimes be invisible or hard to read, if the color of the text is similar to the background color. Therefore, specify the color(s) and check how it looks in the browser.]]></description>
			<content:encoded><![CDATA[<p>Some browsers display the alt text when an <code>img</code> element is not displayed. The alt text can sometimes be invisible or hard to read, if the color of the text is similar to the background color. Therefore, specify the color(s) and check how it looks in the browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/specify-a-text-colour-for-img-elements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plan the absence of Javascript</title>
		<link>http://webdosanddonts.com/plan-the-absence-of-javascript</link>
		<comments>http://webdosanddonts.com/plan-the-absence-of-javascript#comments</comments>
		<pubDate>Mon, 15 Feb 2010 19:38:05 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Do's]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=938</guid>
		<description><![CDATA[The fact is that some of your website’s visitors will have JavaScript disabled. Should hidden content remain hidden even if JavaScript is disabled? Should all content be available to screen readers and search engines? If a piece of content becomes visible only after an AJAX call, how do you adequately fill that space when JavaScript [...]]]></description>
			<content:encoded><![CDATA[<p>The fact is that some of your website’s visitors will have JavaScript disabled. Should hidden content remain hidden even if JavaScript is disabled? Should all content be available to screen readers and search engines? If a piece of content becomes visible only after an AJAX call, how do you adequately fill that space when JavaScript is disabled?</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/plan-the-absence-of-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always provide an alt text in img elements</title>
		<link>http://webdosanddonts.com/always-provide-an-alt-text-in-img-elements</link>
		<comments>http://webdosanddonts.com/always-provide-an-alt-text-in-img-elements#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:24:11 +0000</pubDate>
		<dc:creator>Bojan</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Do's]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[alt]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=873</guid>
		<description><![CDATA[The alt attribute is a textual replacement for the image which is not being displayed. It must always be used, even if the image in question is purely decorative&#8211;in that case, the alt attribute should be an empty string.]]></description>
			<content:encoded><![CDATA[<p>The <code>alt</code> attribute is a textual replacement for the image which is not being displayed. It must always be used, even if the image in question is purely decorative&#8211;in that case, the <code>alt</code> attribute should be an empty string.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/always-provide-an-alt-text-in-img-elements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
