After years of working on the backend algorithmic and analytic stuff, I have recently been forced to do some "HTML work". (And you guys have something called jQuery now, is that right?) Anyhoo, back when I used to do HTML (prior to XHTML days), tables were very very common. Now, I see a deluge of support for "div"s and honorifics such as "table-less!". To catch up on the years that I missed, what is the reason that divs are preferred over tables? [I recently tried to do a simple two column table (66%,33%) into divs, and the bruises are still fresh.]
I realize that the question may be subjective, so as a specific subquestion: What is the easy and concise div based HTML that renders the following table:
<table>
<tr>
<td width="33%">Name</td>
<td width="67%">Description</td>
</tr>
<tr>
<td>National Hockey League</td>
<td>A much longer paragraph about the league</td>
</tr>
</table>