Correct usage of HTML5 <hr> tag

Viewed 10092

I'm writing a new webpage for a company and I have (a sane subset of) HTML5/W3C recommendations in mind.

After reading the semantic meaning of <hr />, I was wondering if this was a good place to use it:

<section name="historyItem">
    <h2>2002</h2>
    <p>Dolorem ipsum dolor sit amet in 2002, consectetur [...]</p>
    <hr />
    <ul>
        <li><a href="#">Link A</a></li>
        <li><a href="#">Link B</a></li>
    </ul>
</section>

My line of reasoning is that, yes, that <hr /> represents a thematic change from section description to section links, but I'm unsure about that.

Maybe "thematic change" means to have a new paragraph later on another subject, and thus my example wouldn't be "correct". What do you think?

(ps.: Yes, that <ul> is CSS-styled to fit a single line and look cool)

2 Answers
Related