Build your professional network on facebook via our app Go to app
 
 1 of 7 in Topic  Next >>
Topic : Ideas for a successful website
  Rate : 
Industry : ITES / BPO / Customer Service Functional Area : Infrastructure
Activity:  8 comments  393 views  last activity : 07 06 2010 20:18:04 +0000
 Refer 425
Share
 
 
 

Your website is designed, the CMS works, content has been added and the client is happy. It’s time to take the website live. Or is it? When launching a website, you can often forget a number of things in your eagerness to make it live, so it’s useful to have a checklist to look through as you make your final touches and before you announce your website to the world.

This article reviews some important and necessary checks that web-sites should be checked against before the official launch — little details are often forgotten or ignored, but – if done in time – may sum up to an overall greater user experience and avoid unnecessary costs after the official site release.

Favicon

A favicon brands the tab or window in which your website is open in the user’s browser. It is also saved with the bookmark so that users can easily identify pages from your website. Some browsers pick up the favicon if you save it in your root directory as favicon.ico, but to be sure it’s picked up all the time, include the following in your head.

<link rel="icon" type="image/x-icon" rel=nofollow href="/favicon.ico" />

And if you have an iPhone favicon:

<link rel="apple-touch-icon" rel=nofollow href="/favicon.png" />

Description

Titles And Meta Data

Your page title is the most important element for SEO and is also important so that users know what’s on the page. Make sure it changes on every page and relates to that page’s content.

<title>10 Things To Consider When Choosing The Perfect CMS | How-To | Smashing Magazine</title>

Meta description and keyword tags aren’t as important for SEO (at least for the major search engines anyway), but it’s still a good idea to include them. Change the description on each page to make it relate to that page’s content, because this is often what Google displays in its search result description.

<meta name="description" content="By Paul Boag Choosing a content management system can be tricky. Without a clearly defined set of requirements, you will be seduced by fancy functionality that you will never use. What then should you look" />

Description

Cross-Browser Checks

Just when you think your design looks great, pixel perfect, you check it in IE and see that everything is broken. It’s important that your website works across browsers. It doesn’t have to be pixel perfect, but everything should work, and the user shouldn’t see any problems. The most popular browsers to check are Internet Explorer 6, 7 and 8, Firefox 3, Safari 3, Chrome, Opera and the iPhone.

Description

Proofread

Read everything. Even if you’ve already read it, read it again. Get someone else to read it. There’s always something you’ll pick up on and have to change. See if you can reduce the amount of text by keeping it specific. Break up large text blocks into shorter paragraphs. Add clear headings throughout, and use lists so that users can scan easily. Don’t forget about dynamic text too, such as alert boxes.

Links

Don’t just assume all your links work. Click on them. You may often forget to add “http://” to links to external websites. Make sure your logo links to the home page, a common convention.

Also, think about how your links work. Is it obvious to new users that they are links? They should stand out from the other text on the page. Don’t underline text that isn’t a link because it will confuse users. And what happens to visited links?

Links

Functionality Check

Test everything thoroughly. If you have a contact form, test it and copy yourself so that you can see what comes through. Get others to test your website, and not just family and friends but the website’s target market. Sit back and watch how a user uses the website. It’s amazing what you’ll pick up on when others use your website differently than how you assume they’d use it. Common things to check for are contact forms, search functions, shopping baskets and log-in areas.

Graceful Degradation

Your website should work with JavaScript turned off. Users often have JavaScript turned off for security, so you should be prepared for this. You can easily turn off JavaScript in Firefox. Test your forms to make sure they still perform server-side validation checks, and test any cool AJAX stuff you have going on.

Javascript

Validation

You should aim for a 100% valid website. That said, it isn’t the end of the world if your website doesn’t validate, but it’s important to know the reasons why it doesn’t so that you can fix any nasty errors. Common gotchas include no “alt” tags, no closing tags and using “&” instead of “&amp;” for ampersands.

Valid

RSS Link

If your website has a blog or newsreel, you should have an RSS feed that users can subscribe to. Users should be able to easily find your RSS feed: the common convention is to put a small RSS icon in the browser’s address bar.

Put this code between your <head> tags.

<link rel="alternate" type="application/rss+xml" title="Site or RSS title" rel=nofollow href="link-to-feed" />

RSS

Analytics

Installing some sort of analytics tool is important for measuring statistics to see how your website performs and how successful your conversion rates are. Track daily unique hits, monthly page views and browser statistics, all useful data to start tracking from day 1. Google Analytics is a free favorite among website owners. Others to consider are Clicky, Kissmetrics (still in closed beta yet), Mint and StatCounter.

Analytics

Sitemap

Adding a sitemap.xml file to your root directory allows the major search engines to easily index your website. The file points crawlers to all the pages on your website. XML-Sitemaps automatically creates a sitemap.xml file for you. After creating the file, upload it to your root directory so that its location is www.mydomain.com/sitemap.xml.

If you use WordPress, install the Google XML Sitemaps plug-in, which automatically updates the sitemap when you write new posts. Also, add your website and sitemap to Google Webmaster Tools. This tells Google that you have a sitemap, and the service provides useful statistics on how and when your website was last indexed.

Analytics

Defensive Design

The most commonly overlooked defensive design element is the 404 page. If a user requests a page that doesn’t exist, your 404 page is displayed. This may happen for a variety of reasons, including another website linking to a page that doesn’t exist. Get your users back on track by providing a useful 404 page that directs them to the home page or suggests other pages they may be interested in.

Another defensive design technique is checking your forms for validation. Try submitting unusual information in your form fields (e.g. lots of characters, letters in number fields, etc.) and make sure that if there is an error, the user is provided with enough feedback to be able to fix it.

404

Optimize

You’ll want to configure your website for optimal performance. You should do this on an ongoing basis after launch, but you can take a few simple steps before launch, too. Reducing HTTP requests, using CSS sprites wherever possible, optimizing images for the Web, compressing JavaScript and CSS files and so on can all help load your pages more quickly and use less server resources.

Besides, depending on the publishing engine that you are using, you may need to consider taking more specific measures – for instance, if you are using WordPress, you may need to consider useful caching techniques to speed up the performance.

Yahoo Best Practices

Back Up

If your website runs off a database, you need a back-up strategy. Or else, the day will come when you regret not having one. If you use WordPress, install Wordpress Database Backup, which you can set up to automatically email you backups.

Print Style Sheet

If a user wants to print a page from your website, chances are she or he wants only the main content and not the navigation or extra design elements. That’s why it is a good idea to create a print-specific style sheet. Also, certain CSS elements, such as floats, don’t come out well when printed.

To point to a special CSS style sheet that computers automatically use when users print a page, simply include the following code between your <head> tags.

<link rel="stylesheet" type="text/css" rel=nofollow href="print.css" media="print" />

Download the Ultimate Website Launch Checklist!

Just recently Dan Zambonini has published a very detailed checklist that covers both the pre-launch and the post-launch phase of the web site life cycle. Among other things his Ultimate Website Launch Checklist contains checks related to content and style, standards and validation, search engine visibility, functional testing, security/risk, performance and marketing.

Ultimate Check List

The pdf-version is available as well. The checklist is a very useful reference that may help you in your daily projects and will help you to prevent errors and mistake once the site is released.

You may also want to consider the Quick Usability Check List by David Leggett that highlight some of the more common problems designers should address on their own sites in a Usability checklist of sorts. Not all of these items will apply to every website, these are just suggested things to look for in your own site design.

Quick Usability Check List

What other checks would you list?

Make yourself a to-do list and keep it handy to check over before making any website live. Are there any other points you would add? Share them in the comments!

 
7 comments on "15 Essential Checks Before Launching Your Website"
  Commented by  Mihir Jhaveri, ORacle Supply Chain Management Head, Bristlecone India    | 04 11 2009 09:56:31 +0000
Really excellent article and very very useful.

Thanks
  Commented by  Devi Kaladeen, Audit Manager, Health Sector Development Unit    | 04 09 2009 19:17:05 +0000
Rating : +1 
Valuable knowledge. Thanks for the referral,
  Commented by  Diptanjan Mukherjee, Team Leader -(Technical), Navayuga Infotech    | 04 09 2009 18:46:50 +0000
Rating : +1 
A very good article indeed.
  Commented by  Raju Ramalingam, Business Analyst, Rhytha Web Solutions    | 04 09 2009 14:31:10 +0000
Rating : +1 
Really excellent article and very very useful. So many thanks...
  Commented by  Amitava Goswami, Asst. Manager/Manager -(NonTechnical), IBM-Daksh    | 04 09 2009 09:29:29 +0000
Rating : +1 
really good article thanks for sharing
  Commented by  Akash, International Marketing Shabro    | 04 09 2009 08:30:06 +0000
Rating : +1 
nice article
  Commented by  Viktor Stephen, COO, Business Mashup/Partner Get.Next.Job    | 04 09 2009 06:07:41 +0000
Rating : +1 
Good article. Thanks for sharing. 
Add your comment on "15 Essential Checks Before Launching Your Website"

Rate:
Submit
Redefining Recruitment
  • Create a confidential Career Profile and Resume/C.V. online
  • Get advice for planning their career and for marketing of experience and skills
  • Maximize awareness of and access to the best career opportunities
Viewers also viewed
Agriculture vs IT Development
 
840 referals 21 arguments, 139 views
Entrepreneurship cannot be learnt or inherited. The great way to learn entrepreneurship is in...
 
278 referals 5 votes, 158 views
MBA polishes the career and makes it shine vs MBA now has lost its charm
 
96 referals 4 arguments, 125 views
more...  
Recent Knowledge (281)
              by Shombit Sengupta               Driving $60 billion of the arguable $800+...
 
238 referals 5 comments, 63 views
  How to spot a fake resume Here are somethings you need to look for to ensure that you are not...
464 referals 8 comments, 1794 views
"They all were looking at me on the bed.   I went back to my bedroom.   "Am I dead??" I asked...
 
168 referals 26 comments, 257 views
more...  
More From Author
Wonderfullllll Aras Sir!! one the best awareness info from ur collection!! Keep on sharing !! All da best!!
I also think same! Considering Social Networking shifted all aspects included from Business to Social Awareness about specific/general concerns! Also being direct mediator one can easily approach to Employer on right time, when there is job...
Really very thanks Bhave sir, Its worth observing!!!
more...