6.1: Favorites HTML
Add a new section
<section id="favorites" style="background-color: lightgray;">
<h3>Favorites</h3>
</section>
Create our table


Next Section
Last updated
<section id="favorites" style="background-color: lightgray;">
<h3>Favorites</h3>
</section>


Last updated
<table>
<tr>
<th>Topic</th>
<th>Favorite</th>
<th>Runner Up</th>
<th>Another Good One</th>
</tr>
<tr>
<td>Movie</td>
<td>Shrek</td>
<td>Frozen</td>
<td>Homeward Bound</td>
</tr>
<tr>
<td>Book</td>
<td>Harry Potter and the Deathly Hallows</td>
<td>The Great Gatsby</td>
<td>The Art Of Computer Programming</td>
</tr>
<tr>
<td>TV Show</td>
<td>M.A.S.H.</td>
<td>Happy Days</td>
<td>Friends</td>
</tr>
<tr>
<td>Song</td>
<td>Friends in Low Places</td>
<td>Baby One More Time</td>
<td>Ring of Fire</td>
</tr>
</table>