Hi Tee,

> I thought this is suffice but then I am not sure as these HTML5 tags
> are still too new for me.
> 
>  <section id="articles">
> 
>       <article>
> <h2>...</h2>
> <p>...</p>
>     </article>
> 
> 
>       <article>
> <h2>...</h2>
> <p>...</p>
>     </article>
> 
>  </section>

What about something like this?

<ol id="articles">
  <li>
    <article>
      <header>
        <h1><a href="#">Article Title</a></h1>
      </header>
      <p>Lorem ipsum dolor sit amet, ...</p>
    </article>
  </li>
  <li>
    <article>
      <header>
        <h1><a href="#">Article Title</a></h1>
      </header>
      <p>giat nulla pariatur. Excepteur sint occaecat cupidatat
      non proident, sunt in culpa qui officia deserunt mollit anim id est
      laborum.</p>
    </article>
  </li>
</ol>


--
Regards,
Thierry
www.tjkdesign.com | www.ez-css.org | @thierrykoblentz






*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
*******************************************************************

Reply via email to