Mar 11
Thursday

We Do

It is our desire to help clients worldwide by offering them professionals who will be able to facilitate them in the everyday hurdles commonly associated with online ventures. It is our belief that Client Satisfaction is the key to Success. That is why we don’t just offer clients a resume, we offer them a person – a professional who matches up to their qualifications and expectations perfectly. Someone they can trust and build a healthy working relationship with.

With the GMCI Online Experts Team, you can just sit back and relax – assured of having the cream of the crop working for you.

Live Support

Online Technical Support@ Yahoo Messenger
Creating a Site Map for your web site
The simplest way to create a site map is to use the HTML Unordered Lists tag <UL>. The tag can be employed to create simple one-level lists and also display the hierarchical structure of your web site by nesting lists if your site s more complex.

The Unordered Lists tag <UL> supports a neat attribute called Type with which you can specify the type of bullet you want for the list - disc, circle or square.

Let us look at an example:

  • Electronics
    • DVD Players
    • V.C.R.s
    • Computers
      • Desktops
      • Laptops
      • Palmtops
    • Portable MP3 players
    • T.V.s
  • Automobiles
    • Cars
    • Buses
    • Motorcycles
    • Scooters
  • Furniture
    • Beds
    • Tables
    • Chairs

The HTML code for the above is:

<ul type="disc">
<li>Electronics
<ul type="square">
<li>DVD Players</li>
<li>V.C.R.s</li>
<li>Computers
<ul type="circle">
<li>Desktops</li>
<li>Laptops</li>
<li>Palmtops</li>
</ul>
</li>
<li>Portable MP3 players</li>
<li>T.V.s</li>
</ul>
</li>
<li>Automobiles
<ul type="square">
<li>Cars</li>
<li>Buses</li>
<li>Motorcycles</li>
<li>Scooters</li>
</ul>
</li>
<li>Furniture
<ul type="square">
<li>Beds</li>
<li>Tables</li>
<li>Chairs</li>
</ul>
</li>
</ul>

Note how the hierarchical structure is displayed using nested Unordered Lists <UL> tag. We have also used the TYPE attribute and specified the kind of bullet we want for each list.