0

In my page i need to list last news with title only. I have two methods:

One:

<div>
  <p>Title One</p>
  <p>Title Two</p>
  <p>Title Three</p>
  <p>Title .....</p>
  <p>Title .....</p>
  <p>Title .....</p>
</div>

Two:

<div>
  <ul>
     <li>TTILE ONE </li>
     <li>TTILE Two </li>
     <li>TTILE THree</li>
     <li>TTILE .....</li>
  </ul>
</div>

In HTML5 which way is better and readable?! with <p></p> Or <ul><li>?!

MeMoR
  • 95
  • 9
  • Neither is better in terms of hot html can be read. However it is considered a list, and so your question can be answered by means of using
  • – Lee Jan 17 '15 at 16:32