
<?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>CssGlance gallery &#187; Accessibility</title>
	<atom:link href="http://www.cssglance.com/category/news/accessibility/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssglance.com</link>
	<description>CssGlance is the first italian website focused on providing a gallery of well designed and innovative CSS based websites from all around the world.</description>
	<lastBuildDate>Mon, 05 Apr 2010 11:52:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Accessibility of pre-filled input fields</title>
		<link>http://www.cssglance.com/news/accessibility-of-pre-filled-input-fields/</link>
		<comments>http://www.cssglance.com/news/accessibility-of-pre-filled-input-fields/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 23:06:03 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Xhtml reference]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/?p=2882</guid>
		<description><![CDATA[In the last few days I found myself facing a tough question: <strong>are pre-filled input fields considered accessible yet</strong>? It took me some time, asking my colleagues and consulting accessibility experts, to find out a possible answer.]]></description>
			<content:encoded><![CDATA[<p>In the last few days I found myself facing a tough question: <strong>are pre-filled input fields considered accessible yet</strong>? It took me some time, asking my colleagues and consulting accessibility experts, to find out a possible answer.</p>
<p>Let&#8217;s take a <strong>common search form</strong> as an example. For the input field which lets you type in the text you want to search, so far I&#8217;ve always been using a default pre-filled text, something like &#8220;Search the site&#8221;, &#8220;Looking for something?&#8221; or &#8220;Can we help you find something?&#8221;.</p>
<p><img  class="general-image-post" src="http://www.cssglance.com/wp/wp-content/themes/cssglance2_0/images/pre-filled-input-field.jpg" alt="Example 1 - Search form with pre-filled text input" /></p>
<p>This was because <a href="http://www.w3.org/TR/WCAG10/wai-pageauth.html#tech-place-holders">Checkpoint 10.4</a> of <a href="http://www.w3.org/TR/WCAG10/">WCAG 1.0</a> recommended that until user agents  (such as browsers or screen readers) handle empty controls correctly, we had to include default, place-holding characters in edit boxes and text areas.</p>
<p>To avoid the inconvenience for the users to have to remove the default text before typing in their keywords, I used to add a small <strong>inline JavaScript to clean up the field</strong> as soon as the user clicks on it or the field gets the focus on. This was obviously only a partial solution because users who browse the page with JavaScript disabled would have to select the default text and delete it. That could be a nuisance indeed and would affect usability as well.</p>
<p>Things have changed since December 11th 2008, when <a href="http://www.w3.org/TR/WCAG20/">WCAG 2.0</a> became <a href="http://www.w3.org/">W3C</a> recommendation. Simply reading WCAG 2.0 you don&#8217;t find any reference to pre-filled text though. This could be a bit confusing and actually that&#8217;s what disoriented me when I was trying to get an answer to my question.  </p>
<p>But, reading carefully the W3C documentation,  I finally found my answer! Within the <a href="http://www.w3.org/WAI/WCAG20/from10/comparison/">comparison of WCAG 1.0 Checkpoints to WCAG 2.0</a>, you can find the following sentence referring to Checkpoint 10.4 of WCAG 1.0:</p>
<p>Checkpoint 10.4: Until user agents handle empty controls correctly, include default, place-holding characters in edit boxes and text areas. [Priority 3].  This &#8220;until user agents&#8221; condition has been met. Therefore, <strong>this checkpoint is no longer required</strong>. </p>
<p>WCAG 2.0 states that we do not have to include the default text anymore, because now user agents are capable to handle correctly empty fields. This helps to clarify a bit, but I think it&#8217;s not enough yet. In fact, it is not clear if we simply can avoid to use pre-filled texts or if we don&#8217;t have to use them at all.</p>
<p>Finally, I cleared my doubts chatting with a <strong>guy who is part of the W3C project</strong> and who usually runs usability and accessibility tests in <a href="http://www.cfit.ie">CFIT</a>, the Center for Inclusive Technology, based in Dublin, Ireland. He told me that <strong>users testing</strong> show that adding pre-filled text is no longer necessary for accessibility. Research, in fact, has shown that <strong>pre-filled text fields can cause difficulties for some modern screen readers</strong>, especially if JavaScript is disabled.</p>
<p>Based on these tests and on WCAG 2.0 we should definitely stop using pre-filled text inputs. Anyway, I think that having some explanatory text might improve usability. The easiest solution, in my opinion, is to <strong>replace pre-filled texts</strong> (as &#8220;Search the site&#8221; in search forms or &#8220;dd/mm/yyyy&#8221; in date input fields) <strong>with labels</strong>. Labels are strictly related to inputs fields, by the use of the FOR and ID attributes, and describe the input they refer to. This kind of helpful info should be added to the label text. Taking our example once again, I would replace the use of the default text in the input filed with the label as follow:</p>
<p><img  class="general-image-post" src="http://www.cssglance.com/wp/wp-content/themes/cssglance2_0/images/input-field-label.jpg" alt="Example 2 - Search form with label" /></p>
<p>In this case we can be sure we comply with WCAG 2.0 and we can also sort out the accessibility issue that we would encounter when users browse the page with JavaScript disabled. Hope this article helps to clarify the matter. I&#8217;d like you guys to <strong>tell us your experience</strong> on the subject because I&#8217;m sure that something interesting could come up! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/accessibility-of-pre-filled-input-fields/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using flexible CSS layouts to keep your content in order of priority</title>
		<link>http://www.cssglance.com/news/accessibility/using-flexible-css-layouts-to-keep-your-content-in-order-of-priority/</link>
		<comments>http://www.cssglance.com/news/accessibility/using-flexible-css-layouts-to-keep-your-content-in-order-of-priority/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 21:20:16 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/?p=2239</guid>
		<description><![CDATA[Keeping the content in order of priority improves the accessibility of your pages. How to use CSS to achieve any column layout, while keeping the most relevant content highest on the page?]]></description>
			<content:encoded><![CDATA[<p>As you probably already know <strong>keeping the content in order of priority improves the accessibility</strong> of your pages. </p>
<p>This has been declared in <a href="http://www.w3.org/TR/WCAG20/">WCAG 2.0</a>, published as a <a href="http://www.w3.org/">W3C</a> Recommendation on December 11th, 2008, where <a href="http://www.w3.org/TR/WCAG20/#content-structure-separation">Guideline 1.3</a> states that we should always create content that can be presented in different ways (for example simpler layout) without losing information or structure.</p>
<p>The easiest way to meet this guideline is to develop our websites starting from a <strong>good semantic XHTML structure</strong>. We should organize the code so that the most important content always comes as close to the top of the page as possible. Once we have the structure we can then use CSS to change the presentation. But content has to come first. As you know on the Internet <strong>content is king</strong> and always will be. </p>
<p>The main issue with this approach is that sometime it&#8217;s not that easy to get the positioning we need without moving bits of XHTML around. Obviously this practice could mess up the content order, jeopardizing the accessibility of the page.</p>
<p><strong>Dan Johnson</strong> published a cool article on <a href="http://www.webdesignfromscratch.com//css/keeping-content-in-priority-order-using-float-layouts.php">how to use CSS floats to achieve any column layout, while keeping the most relevant content highest on the page</a>.</p>
<p>In his example, he uses the exact same HTML markup to create six different layouts by the clever use of CSS styles. This is a great sample of how we can get the design we need, keeping the content in order of priority and safeguarding accessibility.</p>
<p>Try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/accessibility/using-flexible-css-layouts-to-keep-your-content-in-order-of-priority/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Questions to Evaluate Your Website</title>
		<link>http://www.cssglance.com/news/50-questions-to-evaluate-your-website/</link>
		<comments>http://www.cssglance.com/news/50-questions-to-evaluate-your-website/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 10:00:05 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/news/50-questions-to-evaluate-your-website/</guid>
		<description><![CDATA[<strong>Carsten Cumbrowsky</strong>'s article</a> on Search Engine Journal provide us a long and pretty <strong>list of questions</strong> that a website owner should ask himself about his website. I think it could hardly be considered a final list... so, as the author himself suggested, feel free to discuss about it! ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.searchenginejournal.com/50-questions-to-evaluate-the-quality-of-your-website/6400/"><strong>Carsten Cumbrowsky</strong>&#8217;s article</a> on <a href="http://www.searchenginejournal.com">Search Engine Journal</a> provide us a long and pretty <strong>list of questions</strong> that a website owner should ask himself about his website. I think it could hardly be considered a final list&#8230; so, as the author himself suggested, feel free to discuss about it! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/50-questions-to-evaluate-your-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pure CSS MiniAdv</title>
		<link>http://www.cssglance.com/news/pure-css-miniadv/</link>
		<comments>http://www.cssglance.com/news/pure-css-miniadv/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 07:10:54 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>
		<category><![CDATA[CssGlance]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/news/pure-css-miniadv/</guid>
		<description><![CDATA[We've received quite a number of emails from designers who want to know <strong>how our MiniAdv banner works.</strong> Is it a JavaScript, a PHP solution, a server-side application? No, it’s even more simple. <strong>It’s CSS</strong>. Here we’d like to explain it in details!]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve received quite a number of emails from designers who want to know <strong>how our MiniAdv banner works.</strong> Is it a JavaScript, a PHP solution, a server-side application? No, it’s even more simple. <strong>It’s CSS</strong>. Here we’d like to explain it in details!</p>
<p>The first idea was not our own. I think you can easily remember the great success made by what was called “<strong><a href="http://www.milliondollarhomepage.com/">The Million Dollar Homepage</a></strong>”. A simple page covered by a lot of mini banners which has led the owner to become millionaire and to leap to fame.</p>
<p>Quite a few websites adopted this useful way of making money. You can see good examples on <a href="http://www.cssremix.com/showcase/mojobaby">CSS Remix</a> and <a href="http://www.italianwebgallery.it/">Italian Web Gallery</a>.</p>
<p>In the most cases, you can get more information about the single banner by passing the mouse pointer over it. By doing this action, a small <strong>tooltip </strong>will appear, providing additional info as the name, the tagline or simply a link back to the website who bought the adv block.</p>
<p>This feature is often realized by using a small <strong>JavaScript</strong>. But what will happen to those users browsing a page without JavaScript enabled? The answer is simple. They won’t see the tooltip and the adv info. That means <strong>the content is not accessible</strong>.</p>
<p>So, what can we do to get the same nice tooltip feature and to improve accessibility? The solution is CSS. In fact, <strong>we can create pure CSS tooltips</strong> which are simple, useful and accessible, ‘cos they work even if the user browse the page without JavaScript enabled. This is the way we followed on <a href="http://www.cssglance.com"><strong>CSSGlance</strong></a>.</p>
<p>This is <a href="http://www.cssglance.com/test/miniadv/"><strong>what we’re looking for</strong></a> and now let’s go into details.</p>
<p>We just need a <strong>plain list of links</strong>. The <strong>XHTML code</strong> is something like this:</p>
<p><code>&lt;ul&gt;<br />
&lt;li&gt;&lt;a href="http://www.google.com"&gt; &lt;span&gt;Google.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="http://www.yahoo.com"&gt; &lt;span&gt;Yahoo.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="http://www.cssbeauty.com"&gt; &lt;span&gt;CSSBeauty.com&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />
...<br />
&lt;/ul&gt;</code></p>
<p>Now we have to float the &lt;li&gt; elements in order to put side by side each block. Then we can add a relative position to the links, in order to allow the <strong>span element inside to position absolutely respect the parent link</strong>. The span have also a display:none property which is changed into a display:block one when the mouse pointer pass over the block. You can easily solve ie bug adding some z-index.</p>
<p>Here you have the basic <strong>CSS code</strong>:</p>
<p><code>#miniadv ul{margin:0;padding:0;list-style:none}<br />
#miniadv ul li {float:left;margin:0 2px 2px 0}<br />
#miniadv a{float:left;position:relative;z-index:5; width:18px;height:18px}<br />
#miniadv a:hover{z-index:10}<br />
#miniadv a span{display:none}<br />
#miniadv a:hover span {display:block;position:absolute; bottom:2em;right:2em;width:135px}</code></p>
<p>Let’s <a href="http://www.cssglance.com/test/miniadv/"><strong>take a look at the example</strong></a>! You can <a href="http://www.cssglance.com/test/miniadv/miniadv.zip"><strong>download this example</strong></a> (zip-9KB) and <strong>use it however you like</strong>, but please <strong>give a link back to CSSGlance</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/pure-css-miniadv/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Semantic Web Markup for Blogs</title>
		<link>http://www.cssglance.com/news/semantic-web-markup-for-blogs/</link>
		<comments>http://www.cssglance.com/news/semantic-web-markup-for-blogs/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 13:30:24 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/accessibility/semantic-web-markup-for-blogs/</guid>
		<description><![CDATA[Chris Pearson decided to publish the essential guide to semantic Web markup for blogs. Learn it, live it, and benefit from it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pearsonified.com/about/">Chris Pearson</a> decided to publish the <a href="http://www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php">essential guide to semantic Web markup for blogs</a>. Learn it, live it, and benefit from it. It can mean the difference between a good site and one that will blow you away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/semantic-web-markup-for-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>@media 2007 podcasts</title>
		<link>http://www.cssglance.com/news/media-2007-podcasts/</link>
		<comments>http://www.cssglance.com/news/media-2007-podcasts/#comments</comments>
		<pubDate>Tue, 24 Jul 2007 08:48:51 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/media-2007-podcasts/</guid>
		<description><![CDATA[Podcasts from this year's @media (London, June 7th-8th) are now available, including audio and slides.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vivabit.com/atmedia2007/europe/schedule/">Podcasts from this year&#8217;s @media</a> (London, June 7th-8th) are now available, including audio and slides.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/media-2007-podcasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to screen readers and screen magnifiers</title>
		<link>http://www.cssglance.com/news/introduction-to-screen-readers-and-screen-magnifiers/</link>
		<comments>http://www.cssglance.com/news/introduction-to-screen-readers-and-screen-magnifiers/#comments</comments>
		<pubDate>Wed, 18 Jul 2007 07:20:28 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/introduction-to-screen-readers-and-screen-magnifiers/</guid>
		<description><![CDATA[Roger Johansson tell us on 456 Berea Street that the best way of explaining how people actually use assistive technology is by watching experienced users.]]></description>
			<content:encoded><![CDATA[<p>Roger Johansson tell us on <a href="http://www.456bereastreet.com/">456 Berea Street</a> that the best way of explaining how people actually use assistive technology is by watching experienced users. So if you have never seen somebody use a screen reader or screen magnifier, or if you have but need a refresher, Roger gives us <a href="http://www.456bereastreet.com/archive/200707/introduction_to_screen_readers_and_screen_magnifiers/">three videos highly recommended</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/introduction-to-screen-readers-and-screen-magnifiers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Accessibility Toolbar 2.0 beta for IE</title>
		<link>http://www.cssglance.com/news/web-accessibility-toolbar-20-beta-for-ie/</link>
		<comments>http://www.cssglance.com/news/web-accessibility-toolbar-20-beta-for-ie/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 07:30:08 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Online tools]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/web-accessibility-toolbar-20-beta-for-ie/</guid>
		<description><![CDATA[Web Accessibility Toolbar 2.0 beta for Internet Explorer is now available. It provides a variety of tools for quickly creating, understanding, and troubleshooting Web pages.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wat-c.org/tools/index.html">Web Accessibility Toolbar 2.0 beta for Internet Explorer</a> is now available. It provides a variety of tools for quickly creating, understanding, and troubleshooting Web pages. Among the new features you&#8217;ll find open in Firefox and Opera button, generated source highlighter and HTML validation quick check. Besides it&#8217;s compatible with IE7 and Vista, all functions (except third party) no longer rely upon external scripts, most functions now work when javascript is disabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/web-accessibility-toolbar-20-beta-for-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Style Sheets Come of Age</title>
		<link>http://www.cssglance.com/news/user-style-sheets-come-of-age/</link>
		<comments>http://www.cssglance.com/news/user-style-sheets-come-of-age/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 10:06:52 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/user-style-sheets-come-of-age/</guid>
		<description><![CDATA[From an accessibility point of view, user style sheet is a powerful tool for people with a vision impairment. But per-site user style sheet could be useful also for customising the aspect of common use applications.]]></description>
			<content:encoded><![CDATA[<p>From an accessibility point of view, user style sheet is a powerful tool for people with a vision impairment. But per-site user style sheet could be useful also for customising the aspect of common use applications.<br />
A well structured <a href="http://www.sitepoint.com/blogs/2007/05/28/user-style-sheets-come-of-age/">article by Matthew Magain</a> on possible benefit of user style sheet, with  <a href="http://userstyles.org/">examples repository</a>, editing tools for browsers which support per-site css, and the case study of <a href="http://www.hicksdesign.co.uk/journal/google-reader-theme-fixed-again">Google Reader visual makeover</a> recently implemented by the designer <a href="http://hicksdesign.co.uk/">Jon Hicks</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/user-style-sheets-come-of-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamics Tables  with TableKit</title>
		<link>http://www.cssglance.com/news/dynamics-tables-with-tablekit/</link>
		<comments>http://www.cssglance.com/news/dynamics-tables-with-tablekit/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 17:03:28 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/dynamics-tables-with-tablekit/</guid>
		<description><![CDATA[Sortable, resizable, editable and accessible tables? Now it is possible using TableKit, a collection of HTML table enhancements based on the Prototype framework]]></description>
			<content:encoded><![CDATA[<p>Sortable, resizable, editable and accessible tables? Now it is possible using <a href="http://www.millstream.com.au/view/code/tablekit/">TableKit</a>, a collection of HTML table enhancements based on the <a href="http://prototypejs.org/">Prototype</a> framework, which currently implements row striping, column sorting, column resizing and cell editing by Ajax. On the website, the demo, the instructions, the support and free download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/dynamics-tables-with-tablekit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grade your website: 31 free online tests</title>
		<link>http://www.cssglance.com/news/grade-your-website-31-free-online-tests/</link>
		<comments>http://www.cssglance.com/news/grade-your-website-31-free-online-tests/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 08:00:16 +0000</pubDate>
		<dc:creator>Andrea - CSSGlance Staff</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Online tools]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/grade-your-website-31-free-online-tests/</guid>
		<description><![CDATA[Avviva Directory provides a useful list containing 31 interesting tools for “grading” your website: code validation, accessibility, speed, browser simulators and Search Engine Optimization (SEO). ]]></description>
			<content:encoded><![CDATA[<p>Avviva Directory provides a useful list containing <a href="http://www.avivadirectory.com/free-online-tests/">31 interesting tools for “grading” your website</a>: code validation, accessibility, speed, browser simulators and Search Engine Optimization (SEO). </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/grade-your-website-31-free-online-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Form Design Best Practices</title>
		<link>http://www.cssglance.com/news/web-form-design-best-practices/</link>
		<comments>http://www.cssglance.com/news/web-form-design-best-practices/#comments</comments>
		<pubDate>Thu, 24 May 2007 16:34:39 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/web-form-design-best-practices/</guid>
		<description><![CDATA[To improve the content of his next book (pubblication date: winter 2008), Luke Wroblewski has created a blog to talk about the design of Web Forms, the most crucial online interactions.]]></description>
			<content:encoded><![CDATA[<p>To improve the content of his next book (pubblication date: winter 2008), Luke Wroblewski has created a <a href="http://www.rosenfeldmedia.com/books/webforms/">blog to talk about the design of Web Forms</a>, the most crucial online interactions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/web-form-design-best-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Web Standards</title>
		<link>http://www.cssglance.com/news/about-web-standards/</link>
		<comments>http://www.cssglance.com/news/about-web-standards/#comments</comments>
		<pubDate>Thu, 24 May 2007 16:33:14 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/about-web-standards/</guid>
		<description><![CDATA[A comprehensive explanation of what is comprised in the term and what not. At the end of the article, a list of resources for learning more.]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://www.robertnyman.com/2007/05/21/what-are-web-standards-a-comprehensive-explanation-of-what-is-comprised-in-the-term/">comprehensive explanation</a> of what is comprised in the term and what not. At the end of the article, a list of resources for learning more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/about-web-standards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bulletproof stylish link buttons</title>
		<link>http://www.cssglance.com/news/bulletproof-stylish-link-buttons/</link>
		<comments>http://www.cssglance.com/news/bulletproof-stylish-link-buttons/#comments</comments>
		<pubDate>Wed, 23 May 2007 06:42:23 +0000</pubDate>
		<dc:creator>Roberto</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Css technique]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.cssglance.com/post/bulletproof-stylish-link-buttons/</guid>
		<description><![CDATA[Roger Johansson, author of 456 Berea Street, explain us how to create elegant, resizable and accessible link buttons with Css.
]]></description>
			<content:encoded><![CDATA[<p>Roger Johansson, author of 456 Berea Street, explain us how to create elegant, resizable and accessible <a href="http://www.456bereastreet.com/archive/200705/creating_bulletproof_graphic_link_buttons_with_css/">link buttons with Css</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssglance.com/news/bulletproof-stylish-link-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>



