1.Divitis , Classitis, Tagitis
Please think twice before adding a tag to the page.
Bad code
<div id="header">
<div class="headerTop">
<h2 class="headerTxt">Site Name</h2>
</div>
<div class="headerTagline">
<span class="tagline">tagline</span>
</div>
</div>
Better Way
<div id="header">
<h2>Site Name</h2>
<span class="tagline">tagline</span>
</div>
2.Tables are okay for tabular data
I see some times that web developers are so passionate about divs and table less designs that they try to fake a table using divs (I was [...]




