I am trying to do is to list the Latest News, and Latest Reviews on the Home/index page and a little bit confused what way should I use to list the content. Kindly tell me that which content publishing technique is better from SEO Perspective:
<div id="NewsList">
<ul>
<li><p>News1 Title</p><p>News1 Summary</p></li>
<li><p>News2 Title</p><p>News2 Summary</p></li>
</ul>
</div>
OR
<div id="NewsList">
<div>
<div id="NewsTitle">News1 Title</div>
<div id="NewsSummary">News1 Summary</div>
</div>
<div>
<div id="NewsTitle">News2 Title</div>
<div id="NewsSummary">News2 Summary</div>
</div>
</div>
I have published the Site Left and Top Menus in <ul><li>
format. Plus Kindly tell me the better SEO Technique for Listing Products.