Veda Bites are swipeable micro-lessons — each one teaches exactly one
idea. Here's a taste from this kit; the app has the full deck.
💡 Key Idea
Tables Are Built Row by Row
Rows first, cells inside — that's the rule.
An HTML table is constructed row by row, not column by column. Each `<tr>` defines a row, and cells (`<th>` or `<td>`) live inside that row.
↳ You always write rows first; the browser figures out the columns from the cells inside each row.
📖 Definition
Core Table Tags You Must Know
Four tags power every HTML table.
↳ Memorize these four: table, tr, th, td — every table is built from them.
⚖️ Comparison
<th> vs <td>: Header or Data?
One is bold, one is plain — know why.
↳ Use <th> for labels and <td> for values — never swap them just for styling.