Website or blog checklist!



As developers we all know the highs of launching a new site, but how many of us have went through a step by step list checking off all the to-do items. The following is (in no particular order) what I normally go through before setting a site live.

Meaningful Page names and folder structures

Make sure that the page names themselves are relevant to the content they contain. Remember that Hypens in page names are more effective from a search engine perspective than underscores. So-try-to-keep-this-in-mind. But dont be too spammy with keyword after keyword or go overboard with length. You get the picture. Folder names should also be meaningful, and relevant to what they hold. Images for images, css for css.

ALT Tags on all images

Make sure your alt tags have meaningful names, that helps again with SEO. There also has been some talk about putting a break out of frames script on your site to catch Google image traffic. Due to the fact that Google images uses frames to show images in context.

Page Titles always set [ no 'untitled document']

Easy to forget, and a stickler for poor search engine results. At time of writing, you would be competiting with 26,400,000 results. So good luck with getting any relevant traffic. Plus it looks pretty unprofessional in the web browser. Dreamweaver normally sets this to Untitled Document, or if you leave the title tag off altogether Firefox shows “Mozilla Firefox”, and Internet Explorer just shows the user the path to the file.

CSS and XHTML valid

Goes without saying. Considering that we are a bit obsessed with standards compliance, and the like we always like to check our documents for validity, and you should too. XHTML must be checked, as should CSS compliance. Good code is good business, and ensures forward compatibility.

Server side includes for Navigation / header / footer

Make sure that you also separate out these badboys, for maintainance reasons. Having to tweak a logo, or copyright date is made ten times easier if you have separated out your code into include files.

Footer copyright date and text

We tend to go all dynamic on sites that support this by writing out the current year automatically. But you can do the same sort of thing with Javascript on static websites quite easily. Its one less thing to worry about maintaining.

Meta Data on all pages

Yes I know, most people think it useless. But Google uses to show a site description in the SERPs, and if this is missing (or looks spammy) then they use on page text. If you want clickthroughs, write (for every page) a unique meta description, and make it appealing to visitors. Don’t be tempted to write meta descriptions for the sole benefits of the search engines, natural language is critical here.

All javascript externalised

I hate seeing sites with inline javascript (or for that matter CSS) code, its lazy, adds weight to the page, and cant be cached by the browser. Get all your javascript code into an external file, and if you are still using that dreadful Adobe / Macromedia legacy code for image swaps and preloading, shame on you. Bloated unreadable code.

Footer links back to your site



If you create websites for other people, you can ask them politely if they would be willing for you to place a link to your website. Make sure you link it with the link text being something relevant to your website. i.e. your chosen keyword phrase which you wish to rank for in the SERPS. An extremely simple way to get additional traffic to your site, and improve your search engine position. Dont bother using your company name as link text, you probably already rank for it, and its a waste of a link.

Text size - able to make larger and smaller

This is an accesibility must, if you use % or ems sizing for your text, then you will be able to resize it in all browsers. Fixed pixel will constrain text size. If its not absolutely necessary try not to use pixel sizes for text in your CSS stylesheet. Some designs require this to prevent them from being broken at larger text sizes, but it is definitely better not to force your visitors to read your content at a specific size.

Site meets Accessibility Guidelines

One of the easiest ways to ensure accessibility is to separating style from presentation using CSS layouts, so the site degrades gracefully. Use text equivalents for every non-text element such as Alt tags. The full list of accessibility guidelines can be found on the w3c website.

Spelling

Bit of a personal issue with me. I hate spelling mistakes, definitely worth going through a site with a fine tooth comb for spelling issues. It will prevent you from looking unprofessional, and could even make the difference (if you are an ecommerce retailer) when making a sale through your site.

Alignment

If you have any experience with building websites, you will know that different websites can render content hideously differently. Unfortunately we aren’t in a place (yet) where we can create valid XHTML content, and expect it to render the same across all browsers. We are closer than we were a couple of years ago..but not quite there yet. If you are using CSS layouts, it is slightly more difficult to provide consistent layout across browsers rather than tables, but the juice is definitely worth the squeeze. Get yourself over to browsershots.org to see how your site renders in different operating systems with different browsers.

Images Quality

Images are a key opportunity to wow your visitor, unfortunately sometimes that comes at a cost. Higher quality images = slower download times, and vice versa. Make sure you dont overcompress for the sake of a few kilobytes if a crisper image would look better. With the uptake of broadband now, its not something to worry overly about. Also make sure that your images dimensions are not constrained via HTML. This will warp the image, and if it is bigger than the space it fits into - be a waste of bandwidth. Always resize images with a photo editor - not with HTML.

Forms testing and validation

Almost if not all websites have forms of some sort to either collect data, or provide feedback, or send email. Always check that these work when you launch, mainly because the setup of your testing and live server is almost always different. Forms should always have both server validation and client side javascript to validate input. Not one or the other.

Register your content rating

A little known, but useful tip is that you can register your website at the Internet Content Rating Association. This makes your website easier for filtering software to distiguish as “in a good neighbourhood”. i.e. Not pornography or other objectionable content. Simply fill in a questionaire, and they will give you a file to upload to your website, and some code to add to your meta tags or ask your website developers to do this for you. Voila, your content has now been correctly tagged.

Sitemap.

Every website should provide a sitemap for the search engines to crawl. You can see what our sitemap looks like over here. It is quite easy to generate one of these, either dynamically (if you have a database driven website) or manually if it is a static site. In fact we had ours created automatically by xml-sitemaps.com.You can then style up the sitemap using XSLT. Feel free to copy our XSLT file if you so desire. To check if your website has a sitemap, or you are checking if your webdevelopers have created one, the easiest way is to look for the existance of a sitemap.xml file. i.e. www.domain.com/sitemap.xml.

Favicon

Everyone loves icons. In fact, there are tons of websites out there dedicated to creating your own favicon for your website. And some that will convert standard images to favicons.

It will appear when you add the icon to your browsers favorites. You can also have animated icons in Firefox. Which is a little gimmicky, but hey I thought I’d throw it in there for completeness sake.

Privacy policy in place

Yep, the data protection act law states that we have to do it, if you are collecting data of any kind. In addition to having an applicable privacy policy, you should also have your registered company details available from your website.

News Via - http://blog.webdistortion.com/

Tags: , , , ,

0 comments:

Post a Comment