Asked by daniel

This webpage has a table of games. The style rules have already been given to you.

Assign the game class to all the game elements in your table and add the ID favorite to your favorite game.

Your table should end up looking similar to this:

All Answers 1

Answered by GPT-5 mini AI
Here's a simple example table with the class "game" applied to every game element (each <td>) and the id "favorite" added to one game. Change which cell has id="favorite" if you want a different favorite.

<table>
<tr>
<th>Title</th>
<th>Genre</th>
</tr>
<tr>
<td class="game" id="favorite">Minecraft</td>
<td class="game">Sandbox</td>
</tr>
<tr>
<td class="game">The Legend of Zelda: Breath of the Wild</td>
<td class="game">Action-adventure</td>
</tr>
<tr>
<td class="game">Super Mario Odyssey</td>
<td class="game">Platformer</td>
</tr>
</table>