<?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>Lee Munroe &#187; web standards</title> <atom:link href="http://www.leemunroe.com/tags/web-standards/feed/" rel="self" type="application/rss+xml" /><link>http://www.leemunroe.com</link> <description>Freelance Web Design Belfast Northern Ireland</description> <lastBuildDate>Tue, 24 Aug 2010 18:37:07 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Valid (X)HTML &#8211; Is it important?</title><link>http://www.leemunroe.com/how-important-is-valid-html-web-standards/</link> <comments>http://www.leemunroe.com/how-important-is-valid-html-web-standards/#comments</comments> <pubDate>Tue, 02 Dec 2008 09:00:04 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[css]]></category> <category><![CDATA[html]]></category> <category><![CDATA[validation]]></category> <category><![CDATA[w3c]]></category> <category><![CDATA[web standards]]></category> <category><![CDATA[xhtml]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=651</guid> <description><![CDATA[As a web designer you&#8217;re encouraged to write valid code, but is it really important?
I&#8217;ve took a look at the reasons behind validation and checked out 25 of the web&#8217;s most popular websites to see if they bother validating their code.What is validation?
Validation is a process of checking your documents against a formal Standard, [...]]]></description> <content:encoded><![CDATA[<p>As a web designer you&#8217;re encouraged to write <strong>valid code</strong>, but is it really important?</p><p>I&#8217;ve took a look at the reasons behind validation and checked out <strong>25 of the web&#8217;s most popular websites</strong> to see if they bother validating their code.</p><p><a
href="http://www.leemunroe.com/how-important-is-valid-html-web-standards"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-29.png" alt="Validation" title="Validation" /></a></p><p><span
id="more-651"></span></p><h4>What is validation?</h4><blockquote><p> Validation is a process of checking your documents against a formal Standard, such as those published by the World Wide Web Consortium (W3C)  for HTML and XML-derived Web document types, or by the WapForum for WML, etc. It serves a similar purpose to spell checking&#8230;<a
href="http://validator.w3.org/docs/why.html">W3C</a></p></blockquote><h4>Why validate, what are the benefits?</h4><h5>1. Non uniform browser correction</h5><p>Non valid pages rely on the browser to <strong>auto-correct your code</strong>, and each browser does this differently. So if you forget to close a tag, Firefox might ignore this but Safari doesn&#8217;t and you end up with a <strong>broken layout</strong>.</p><h5>2. Rendering time</h5><p>If your code is valid the browser has to do less thinking as it doesn&#8217;t have to correct any code, therefore the <strong>page will render faster</strong>.</p><h5>3. Future proofing</h5><p>You never know what&#8217;s around the corner in regards to technology but the chances are that if you have valid (X)HTML, you&#8217;re ensuring that your <strong>website will work with future technologies</strong>.</p><h5>4. Google prefers valid code</h5><p>Shaun Anderson conducted an interesting validation test; <a
href="http://www.hobo-web.co.uk/seo-blog/index.php/official-google-prefers-valid-html-css/">Does Google like valid code?</a>.</p><p>This experiment included 4 pages with the same content but a mixture of valid and non-valid HTML and CSS. The result was that <strong>Google picked up the page that had valid HTML</strong> and valid CSS and indexed this page over the rest.</p><h5>5. Accessibility</h5><p>A valid site is more likely to be <strong>accessible to all types of browsers</strong>, platforms and screen readers.</p><h5>6. Self satisfaction</h5><p>If <strong>feels good</strong> when you <a
href="http://validator.w3.org/">run a validation check</a> on your site and you see the green bar appear <img
src='http://cdn.leemunroe.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h4>What are the common validation errors and how to fix them?</h4><h5>a. Ampersands</h5><p>This always catches me out. Ampersands must be written &#8216;<strong>&amp;amp;</strong>&#8216; and not just &#8216;&amp;&#8217;. This is true for writing urls too.</p><pre><code>&lt;a href="http://images.google.com/imghp?hl=en&amp;amp;tab=wi"&gt;</code></pre><h5>b. Quotations</h5><p>Element property values must be put within quotes.</p><pre><code>&lt;body bgcolor="#ffffff"&gt;</code></pre><h5>c. Closing tags</h5><p>All elements must be closed off, even image tags if you&#8217;re using a XHTML DTD.</p><pre><code>&lt;img src="image.jpg" alt="Image" /&gt;</code></pre><h5>d. Doctypes</h5><p>Your page must have a valid Document Type Definition (DTD) at the top of the page, and take note that it is case sensitive.</p><pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</code></pre><h5>e. Nesting elements incorrectly</h5><p>Elements must be opened and closed in order.</p><pre><code>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Paragraph&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;</code></pre><h4>Do the web&#8217;s biggest sites validate?</h4><p>So do all the big and popular websites out there validate? Below I&#8217;ve put together a selection of some of the most popular websites and ordered them from best(valid) to worst.</p><h5><a
href="http://www.bbc.co.uk/">BBC</a></h5><div
style="text-align:center;"><a
href="http://www.bbc.co.uk/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-13.png" alt="BBC" border="0" width="540" height="100" /></a></div><h5><a
href="http://wikipedia.org/">Wikipedia</a></h5><div
style="text-align:center;"><a
href="http://wikipedia.org/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-15.png" alt="Wikipedia" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.apple.com/">Apple</a></h5><div
style="text-align:center;"><a
href="http://www.apple.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-12.png" alt="CM Capture 12.png" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.facebook.com/">Facebook</a></h5><div
style="text-align:center;"><a
href="http://www.facebook.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-9.png" alt="Facebook" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.number10.gov.uk/">Number 10</a></h5><div
style="text-align:center;"><a
href="http://www.number10.gov.uk/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-21.png" alt="Number 10" border="0" width="540" height="100" /></a></div><h5><a
href="http://digg.com/">Digg</a></h5><div
style="text-align:center;"><a
href="http://digg.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-8.png" alt="Digg" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.yahoo.com/">Yahoo</a></h5><div
style="text-align:center;"><a
href="http://www.yahoo.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-4.png" alt="Yahoo" border="0" width="540" height="100" /></a></div><h5><a
href="http://twitter.com/">Twitter</a></h5><div
style="text-align:center;"><a
href="http://twitter.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-19.png" alt="Twitter" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.timesonline.co.uk/tol/news/">Times Online</a></h5><div
style="text-align:center;"><a
href="http://www.timesonline.co.uk/tol/news/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-20.png" alt="Times" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.google.com/">Google</a></h5><div
style="text-align:center;"><a
href="http://www.google.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-3.png" alt="Google" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.youtube.com/">YouTube</a></h5><div
style="text-align:center;"><a
href="http://www.youtube.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-17.png" alt="YouTube" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.barackobama.com/index.php">Barack Obama</a></h5><div
style="text-align:center;"><a
href="http://www.barackobama.com/index.php"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-18.png" alt="Barack Obama" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.microsoft.com/en/us/default.aspx">Microsoft</a></h5><div
style="text-align:center;"><a
href="http://www.microsoft.com/en/us/default.aspx"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-16.png" alt="Microsoft" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.ebay.com/">eBay</a></h5><div
style="text-align:center;"><a
href="http://www.ebay.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-14.png" alt="eBay" border="0" width="540" height="100" /></a></div><h4>What about the design community?</h4><p>Looking at some of the biggest sites (and authors) in the design and technology community.</p><h5><a
href="http://www.alistapart.com/">A List Apart</a></h5><div
style="text-align:center;"><a
href="http://www.alistapart.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-5.png" alt="A List Apart" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.smashingmagazine.com/">Smashing Magazine</a></h5><div
style="text-align:center;"><a
href="http://www.smashingmagazine.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-7.png" alt="Smashing Magazine" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.webstandardistas.com/">Web Standardistas</a></h5><div
style="text-align:center;"><a
href="http://www.webstandardistas.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-23.png" alt="Web Standardistas" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.zeldman.com/">Zeldman</a></h5><div
style="text-align:center;"><a
href="http://www.zeldman.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-24.png" alt="Zeldman" border="0" width="540" height="100" /></a></div><h5><a
href="http://futureofwebdesign.com/">Future of Web Design</a></h5><div
style="text-align:center;"><a
href="http://futureofwebdesign.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-27.png" alt="FOWD" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.useit.com/">Use It</a></h5><div
style="text-align:center;"><a
href="http://www.useit.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-6.png" alt="Use It" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.37signals.com/">37 Signals</a></h5><div
style="text-align:center;"><a
href="http://www.37signals.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-26.png" alt="37 Signals" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.simplebits.com/">Simple Bits</a></h5><div
style="text-align:center;"><a
href="http://www.simplebits.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-25.png" alt="Simple Bits" border="0" width="540" height="100" /></a></div><h5><a
href="http://freelanceswitch.com/">Freelance Switch</a></h5><div
style="text-align:center;"><a
href="http://freelanceswitch.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-28.png" alt="Freelance Switch" border="0" width="540" height="100" /></a></div><h5><a
href="http://slashdot.org/">Slashdot</a></h5><div
style="text-align:center;"><a
href="http://slashdot.org/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-11.png" alt="Slashdot" border="0" width="540" height="100" /></a></div><h5><a
href="http://www.techcrunch.com/">TechCrunch</a></h5><div
style="text-align:center;"><a
href="http://www.techcrunch.com/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/cm-capture-22.png" alt="TechCrunch" border="0" width="540" height="100" /></a></div><h4>Conclusion</h4><p>I think it&#8217;s worthwhile validating your websites and it&#8217;s good practice. From looking at the sites above however (which are all great sites and designs), it&#8217;s obvious that not having a validated website is not the end of the world.</p><p>If you&#8217;re like me though <strong>you&#8217;ll sleep better at night knowing your website validates</strong>.</p><h4>Does your site validate?</h4><p>It was very hard work trying to track down valid websites for this post so it would be great to see some examples. Use the <a
href="http://validator.w3.org/">W3C Validator to check your site</a> then submit your link and comments below.</p><p>It would also be good to hear your points about validation and if you think it&#8217;s worthwhile.</p><h4>Further Reading</h4><ul><li><a
href="http://www.w3.org/">W3C</a></li><li><a
href="http://validator.w3.org/">W3C Validator</a></li><li><a
href="http://xhtml-css.com/">XHTML-CSS Validator</a></li><li><a
href="http://www.hobo-web.co.uk/seo-blog/index.php/official-google-prefers-valid-html-css/">Google SEO test</a></li><li><a
href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer Toolbar for Firefox</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/how-important-is-valid-html-web-standards/feed/</wfw:commentRss> <slash:comments>47</slash:comments> </item> <item><title>10 old skool no-nos for web designers</title><link>http://www.leemunroe.com/10-old-skool-no-nos-for-web-designers/</link> <comments>http://www.leemunroe.com/10-old-skool-no-nos-for-web-designers/#comments</comments> <pubDate>Fri, 25 Apr 2008 08:35:25 +0000</pubDate> <dc:creator>lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[css]]></category> <category><![CDATA[web standards]]></category><guid
isPermaLink="false">http://www.leemunroe.com/blog/index.php/2008/04/25/10-old-skool-no-nos-for-web-designers/</guid> <description><![CDATA[I was talking to Kyle Boyd recently and we were discussing a website that he was due to revamp. He asked me the question &#8220;Guess what they&#8217;re using?&#8221; and I then rhymed off 10 things that, as web designers, we should try and stay away from. So I  thought I&#8217;d share the list with [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.leemunroe.com/10-old-skool-no-nos-for-web-designers"><img
class="left alignleft size-full wp-image-432" style="margin:0 10px 10px 0;" title="Web designer no nos" src="http://cdn.leemunroe.com/wp-content/uploads/nerd1.jpg" alt="" /></a>I was talking to <a
href="http://www.kyleboyd.co.uk">Kyle Boyd</a> recently and we were discussing a website that he was due to revamp. He asked me the question &#8220;Guess what they&#8217;re using?&#8221; and I then rhymed off 10 things that, as web designers, we should try and stay away from. So I  thought I&#8217;d share the list with you.</p><h4>1. Frames</h4><p>We&#8217;ve come a long way from the standard frame website. As well as being <strong>poor for usability and SEO</strong>, they generally <strong>look awful</strong> too.</p><h4>2. iFrames</h4><p>Similar to frames, but these are small embedded frames within the page. If you need something to replicate an iFrame, e.g. a Terms &amp; Conditions box, make use of the <strong>overflow:auto</strong> declaration in CSS.<br
/> <span
id="more-67"></span></p><h4>3. Tables</h4><p>If you&#8217;re a web designer and you still use HTML tables to layout a page, then you shouldn&#8217;t call yourself a web designer. <strong>Get yourself a <a
href="http://www.amazon.co.uk/gp/redirect.html%3FASIN=1590593812%26tag=leemunroe-21%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/1590593812%253FSubscriptionId=1YNZ339ZCHHAKYFSY702">Web Standards/CSS book</a></strong>. Of course using tables to display tabular data is fine.</p><h4>4. Animated gifs</h4><p>Really old skool websites used to fire a load of animated gifs on a page (I was one of them 10 years ago when first experimenting with web design). They usually <strong>look poor</strong> and more than one can mean there&#8217;s <strong>too much going on</strong>. They can still look well though if used tastefully (on occasion).</p><h4>5. Inline formatting</h4><p>If you use something like &lt;font size=&#8221;12px&#8221;&gt; to format the text on your web pages, you&#8217;ll have a fun time when the client asks for a slightly larger font (and you&#8217;ve got a website with over 1000 pages). Use <strong>external CSS files</strong> to format your designs and content. One amendment changes all.</p><h4>6. FrontPage</h4><p>I used to use FrontPage years ago and I remember it being a really poor environment to work in, that usually added a lot more code to a page than needed. I don&#8217;t know if it&#8217;s any better now, but in general it still seems to be frowned upon by web designers. Microsoft now has <a
href="http://www.microsoft.com/expression/products/overview.aspx?key=web">Expression Web</a>, which I haven&#8217;t used, but I suspect is much better. I would say <strong><a
href="http://www.adobe.com/products/dreamweaver/">Dreamweaver</a> is the industry standard</strong> software for web design, but I would recommend <strong>learning XHTML from scratch and hand coding</strong>.</p><h4>7. Internet Explorer 6 (or even worse, 5.5)</h4><p>Non-web designers don&#8217;t realise the agro that we go through when we finally get a website looking brand spanking fantastic in one browser (usually Firefox in my case) then we do the inevitable browser test in IE6 and the website is a mess. Remember to <strong>check your work in at least Firefox, Safari, IE6, IE7 and Opera.</strong> If you&#8217;re using Internet Explorer, think about using <a
href="http://www.mozilla.com/en-US/firefox/">Firefox</a> instead, or at least make sure you have the <a
href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx">latest version of Explorer (7)</a>.</p><h4>8. Pop-up windows</h4><p>I hate pop-up windows. Pop-up adverts and notices are even worse. If you must insist on a pop-up/fullscreen website, at least <strong>offer an alternative</strong> link for a normal window or look at <strong><a
href="http://www.orangoo.com/labs/GreyBox/">Javascript work-a-rounds</a></strong>.</p><h4>9. New windows</h4><p>I prefer to have control over how many windows and tabs I have open in my browser, I don&#8217;t like the website deciding for me. Using <strong>target=&#8221;_blank&#8221; </strong>launches a new window but disrupts the users experience, so <strong>try not to use it</strong>. I have to admit though that I still use it myself the odd time, if linking to an external website from a clients site (but I&#8217;m trying not to).</p><h4>10.  Flash intro pages</h4><p>This one really <strong>depends on your target market</strong> and the <strong>purpose </strong>of the website. If you really want to impress the pants off someone on a one off experience (e.g., a website for a new movie) then you can get away with it. But if you&#8217;re looking <strong>repeat visits </strong>then a flash intro page will most likely <strong>turn users away</strong>, as it acts like a barrier to the main content (and also poor for SEO). If required, <strong>consider including the Flash intro into the homepage </strong>of the site, surrounded by the content and navigation, just as <a
href="http://www.adobe.com/">Adobe</a> do.</p><h4>World&#8217;s Worst Website</h4><p>I&#8217;m not saying you shouldn&#8217;t ever use any of these points,but as a general rule of thumb I think it&#8217;s safe to say you should try and stay away from most of them.</p><p
align="center"><a
title="Worlds Worst Website" href="http://www.angelfire.com/super/badwebs/"><img
src="http://cdn.leemunroe.com/wp-content/uploads/2008/04/frames.jpg" alt="Frames" /></a></p><p>Oh, and it turned out they had used FrontPage and FrontPage extensions.</p><p>If you&#8217;ve any other tips, send them through below.</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/10-old-skool-no-nos-for-web-designers/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 6/15 queries in 0.027 seconds using disk
Content Delivery Network via cdn.leemunroe.com

Served from: www.leemunroe.com @ 2010-09-07 23:25:50 -->