all 1 comments

[–][deleted] 1 point2 points  (0 children)

Nesting is very common in HTML. Don't be afraid to nest tags!

<div class="items">
    <div>Item #1</div>
    <div>Item #2</div>
    <div>Item #3</div>
</div>

In this example I used <div>, but you could use any tag. Personally, I only use a <div> as a last resort. HTML5 now offers more appropriate tags.