So i need to convert this image to html and css and I was wondering the proper way to do this as im still confused when to use div and span. So, first of all i made a list and then two divs inside it, one for the image and the article. In the article, i thought putting on divs would be too much and just didnt put any and started putting span. :/ Should i put div for every element like the date then heading and the paragraph? Can someone suggest a good method for this?
<div class="posts clrfix">
<ul>
<li>
<div class="post-image">
<img src="images/take-a-break.png" alt="take-a-break">
</div>
<div class="post-content">
<span class="post-date"><em>October 9,2015.</em></span>
<span class="post-comment"><em>4 Comments</em></span>
<h1>TAKE A BREAK</h1>
<p>Lorem ipsum dolor sit amet, consec tetuer adip iscing elit. Aenean commodo ligula eget dolor. Aenean mas- sa. Cum sociis natoque penatibus ...</p>
<span class="post-read-more"><a href="#">READ MORE</a></span>
</div>
</li>
<li></li>
</ul>
</div>