如果我有一个给定月份发生的事件列表,例如:
十月活动:
10 月 8 日 - 社区舞会 10 月 9 日 - 卡拉 OK 之夜 10 月 10 日 - 碰碰运气
最好的编码方式是什么——使用 UL、OL 或其他方式?
无序列表
<h3>October Events</h3>
<ul>
<li>Oct. 8 - Community Dance</li>
<li>Oct. 9 - Karaoke Night</li>
<li>Oct. 10 - Potluck</li>
</ul>
有序列表
<h3>October Events</h3>
<ol>
<li>Oct. 8 - Community Dance</li>
<li>Oct. 9 - Karaoke Night</li>
<li>Oct. 10 - Potluck</li>
</ol>
如果我要包含一个描述,那会改变你看待它的方式吗?通过描述,我可能会这样:
<h3>October Events</h3>
<article>
<h4>Community Dance</h4>
<p class="date">Oct. 8</p>
<p>Description</p>
</article>
<article>
<h4>Karaoke Night</h4>
<p class="date">Oct. 9</p>
<p>Description</p>
</article>
<article>
<h4>Potluck</h4>
<p class="date">Oct. 10</p>
<p>Description</p>
</article>
那么,考虑到 Web 标准,编写事件列表的最语义化方式是什么?