are there accepted standards for web design?
January 11, 2007 9:45 AM
Subscribe
I was wondering if there are some accepted, current standards or design guidelines for web applications.
In particular, I'm wondering about such things as target screen resolution (i.e., don't go wider than 800 pixels), color depth (make everything work at 256 colors), color choices (stick to things like 0xXXYYZZ, where X Y and Z are one of 0, 3, 6, 9, C, and F).
specific answers or pointers to resources are much appreciated.
posted by davidvan to computers & internet (6 comments total)
20 users marked this as a favorite
As of the middle of last year, Jakob Nielsen recommends that you optimize your layout for 1024x768, but try and create a liquid layout that'll work on 800x600 and scale well to larger monitors. However, experience suggests that the majority of websites these days have abandoned attempting to fit things into an 800-pixel width, and generally design for 1024 and up.
Probably the most important 'accepted standard' is the move towards using web standards when designing your site and writing your HTML and CSS. From a design point of view, this can mean giving up the idea that you have pixel-perfect control over your layout and font, and being willing to put as much as possible of the content of your site in plain text rather than images. This approach improves the accessibility of your site.
Moving out of graphic design and into the overall design of the user experience or the interface, I can recommend The Design of Sites as a cookbook full of practical advice, both for plain web sites and for web applications. Finally, modern web applications usually make use of AJAX, and a design guide that specifically targets this is AjaxPatterns, also available in book form.
posted by chrismear at 10:04 AM on January 11, 2007 [2 favorites has favorites]