<?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; Intermediate</title>
	<atom:link href="http://webdosanddonts.com/category/level/intermediate/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>Don&#8217;t put non-ascii characters in URLs</title>
		<link>http://webdosanddonts.com/dont-put-non-ascii-characters-in-urls</link>
		<comments>http://webdosanddonts.com/dont-put-non-ascii-characters-in-urls#comments</comments>
		<pubDate>Thu, 22 Jul 2010 17:30:11 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Don'ts]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=1264</guid>
		<description><![CDATA[One thing that is rather common, especially on websites whose content is not in English, is URLs that contain unencoded characters such as space, å, ä, or ö. While this works most of the time it can cause problems.]]></description>
			<content:encoded><![CDATA[<p>One thing that is rather common, especially on websites whose content is not in English, is URLs that contain unencoded characters such as space, å, ä, or ö. While this works most of the time it can cause problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/dont-put-non-ascii-characters-in-urls/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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 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>Don’t use HTTP based resources on a HTTPS page</title>
		<link>http://webdosanddonts.com/dont-use-http-based-resources-on-a-https-page</link>
		<comments>http://webdosanddonts.com/dont-use-http-based-resources-on-a-https-page#comments</comments>
		<pubDate>Sun, 07 Mar 2010 20:35:27 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Don'ts]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Optimization]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=944</guid>
		<description><![CDATA[Internet Explorer interrupts the download and displays a confirmation dialog whenever it detects the use of mixed content on a secure page. In IE 7 and ealier, this dialog would cause annoyance to users but generally didn’t cause any other significant problems because most users would click on the Yes button and allow non-secure content [...]]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer interrupts the download and displays a confirmation dialog whenever it detects the use of mixed content on a secure page.</p>
<p>In <strong>IE 7 and ealier</strong>, this dialog would cause annoyance to users but generally didn’t cause any other significant problems because most users would click on the <strong>Yes button</strong> and allow non-secure content to be downloaded. However, the wording in the <strong>IE 8</strong> version of this dialog has changed and to download the content a user would now have to click on the <strong>No button</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/dont-use-http-based-resources-on-a-https-page/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>Don&#8217;t use protocol relative paths to CSS files</title>
		<link>http://webdosanddonts.com/dont-use-protocol-relative-paths-to-css-files</link>
		<comments>http://webdosanddonts.com/dont-use-protocol-relative-paths-to-css-files#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:53:03 +0000</pubDate>
		<dc:creator>Siniša</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[Don'ts]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://webdosanddonts.com/?p=942</guid>
		<description><![CDATA[Internet Explorer 7 &#038; 8 will download stylesheets twice if the http(s) protocol is missing.]]></description>
			<content:encoded><![CDATA[<p>Internet Explorer 7 &#038; 8 will download stylesheets twice if the http(s) protocol is missing.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdosanddonts.com/dont-use-protocol-relative-paths-to-css-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
