How should I mark up a list of users?
Each user has a name, picture, and job title.
How's this?
<h1>Venmo</h1>
<h2>Employees</h2>
<ul>
<li>
<article>
<img src="http://www.gravatar.com/avatar/7e6e0e2b73358e47e0b7f83f8111f75b">
<h3>Matt Di Pasquale</h3>
<p>Software Engineer</p>
</article>
</li>
<!-- ... -->
</ul>
Should I remove the article
elements? Should I remove the ul
& li
elements?
<figure>
and<figcaption>
? Also, using microfomats might be a valid option. microformats.org/wiki/h-card – Fenestrated