HTML and CSS Reference
In-Depth Information
12. Copy the following table underneath this new heading. This table only has two columns because these two
menu items do not need descriptions.
<table id="garlic-bread">
<thead>
<tr>
<th>Menu Item</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Garlic Bread</td>
<td>4.00</td>
</tr>
<tr>
<td>Garlic Bread with Double Cheese</td>
<td>4.50</td>
</tr>
<tr>
<td>Garlic Bread with Sun-Ripened Tomato</td>
<td>4.80</td>
</tr>
</tbody>
</table>
13. In the final <section> element, create a new <h1> with the text Side Dishes .
14. Copy the last table underneath this new heading. Again, this table only has two
columns.
<table id="sides">
<thead>
<tr>
<th>Menu Item</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Potato Wedges</td>
<td>3.00</td>
</tr>
<tr>
<td>French Fries</td>
<td>2.50</td>
</tr>
<tr>
<td>6 Onion Rings</td>
<td>3.50</td>
</tr>
</tbody>
</table>
Search WWH ::




Custom Search