I often see things like :
<div id='side_logo'>
<a class="logo" href="index.html">
<img src="img/logo.png">
</a>
</div>
What are the advantage to use the above markup instead of just :
<a id='side_logo' class="logo" href="index.html">
<img src="img/logo.png">
</a>