Website Ease Of Access – Correct Navigation Menu

A really crucial point to think about while developing a site is appropriate navigation. As a fast guideline of thumb, visitors to your website must be able to go to all your pages by using, as many as, 3 clicks. Not only does correct navigation enable users to discover details they are looking for, but it likewise permits search engines to spider (or index) the information they are looking for.

Different kinds of websites use various navigation styles, so it is most likely best to go to websites similar to your own to see which navigation structure they have actually selected. The most common locations or position on website or blog for your navigation menu are either on the left top side of the page or at the top right of the page. When internet users see a site, they do so using what is termed as a “Z scan”. As quickly as page loads, many people scan from the top-left, across to the top-right of the page, then to the lower-left, and ultimately across to the lower-right of the page. It makes the many sense to find your navigation menu in the location where the user is going to very first appearance.

Smaller websites generally just need a fixed menu on either the side or top of the page. A website that consists of 10– 15 subjects on various pages might need a drop-down menu. If this type of menu is used, it is best to likewise consist of text-based navigation in another area on the page.

a men showing mobile webpage design

Another concern is accessibility by assistive innovations. Blind Internet users actually read the code of your page. If a navigation menu is image based or uses image maps, the alternate text must be used to enable the user to effectively navigate the website. To make things simple, no matter what type of navigation I select for a customer’s website, I always consist of text-based navigation links at the bottom of every page to guarantee that they are available to all Internet users and online search engine spiders.

A Few Important Tips

  • – Plan your site navigation structure before developing your site to make sure that you are not forgetting any page links. Due to the fact that you a missing out on a link or two, it might be cumbersome to repair every page you have produced.
  • – The navigation menu need to be clean-cut and consistent.
  • – Do not make the user scroll down the page to see the navigation menu.
  • – If you have too many links, utilize drop-down menus or create a website map.
  • – The navigation structure need to be flexible adequate to allow the inclusion of an extra links at a later date.
  • – Use short, succinct and clear words in your links so your consumers know precisely what type of details that page will include.
  • – Make sure every page has a link back to your homepage. This can be attained by providing a “Home” link in the navigation structure, and/ or linking your logo design image to the homepage.
  • – For bigger websites, breadcrumb tracks can be utilized to let the user understand what section of the website they remain in. At the top of a particular page, the user would see:” Home/ Products/ Widgets/ Green Widgets”

Examples code:

This is just an example you can find many such examples on sololearn. com CSS for this example menu.

THIS IS JS SCRIPT:

$(function() { $(“.submenu”).click(function(){ $(this).children(“ul”).slideToggle(300); }); $(“ul”).click(function(e){ e.stopPropagation(); }); });

THIS IS THE HTML PART::

<head> <title>Page Title</title> </head> </p> <header> <nav> <ul> <li><a>ltem 1</a></li> <li><a>ltem 2</a> <ul> <li>Sub item 2</li> </ul> </li> <li><a>ltem 3</a> <ul> <li>Sub item 3</li> </ul> </li> <li><a>ltem 4</a></li> </ul> </nav> </header> <p>

Conclusion: Various types of websites utilize different navigation styles, so it is probably best to visit sites similar to your own to see which navigation structure they have chosen. The most typical locations for your navigation menu are either on the left side of the page or at the top of the page. As quickly as a page loads, many people scan from the top-left, throughout to the top-right of the page, then down to the lower-left, and ultimately across to the lower-right of the page. If this type of menu is utilized, it is best to also include text-based navigation in another place on the page. To make things simple, no matter what type of navigation I select for a customer’s site, I constantly include text-based navigation links at the bottom of every page to guarantee that they are available to all Internet users and search engine spiders.


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *