tags:

views:

84

answers:

3

Hello,

I want to know is this possible to create hierarchy in web pages by using HTML tags? IF yes, then which HTML tag should I use?

+1  A: 

It depends on context, but lists usually suffice.

Listamatic has a two level example, but you can go as deep as you like.

David Dorward
A: 

Without more info of exactly what you are trying to represent it is hard to answer, but I will take a stab at it and suggest you use the heading tags <h1> through <h6>.

Steve Robillard
+1  A: 

You can use unordered lists to create a hierarchy (the <ul> and <li> tags). This can give you a tree structure which is semantically valid, and on top of that you can do whatever you like to express it in interesting ways, either through CSS or Javascript.

Check out Listutorial for a great series of worked examples.

Paul Dixon