Re: section heading

Timothy Callahan wrote:

> Can someone show me a real world example of what types of content can 
> be arranged with <section> and heading <h> elements.
> I'm new to this <h> element.. Should I be doing some more reading of 
> the new draft?

The following markup:

<section>
    <h>...<h>
    <p>...</p>
    <section>
        <h>...</h>
        <p>...</p>
    </section>
</section>

...basically translates to something like:

<div class="section">
    <h1>...</h1>
    <p>...</p>
    <div class="section">
       <h2>...</h2>
       <p>...</p>
    </div>
</div>

The hierarchical value of h depends on its level of nesting.

Received on Saturday, 28 May 2005 15:37:32 UTC