3.5.3 Style the Table
- Due Oct 28, 2023 by 11:59pm
- Points 5
- Submitting a file upload
- File Types html
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:
STARTER CODE
<!DOCTYPE html>
<html>
<head>
<title>Game Table</title>
<style>
table{
font-size:18px;
background-color:AliceBlue;
}
#favorite{
background-color:green;
}
.game{
background-color:orange;
color:white;
}
</style>
</head>
<body>
<table border="1">
<tr>
<th>Board Game Name</th>
<th>Number of Players</th>
<th>Who Owns the Game</th>
</tr>
<tr>
<td>Settlers of Catan</td>
<td>3</td>
<td>Zach</td>
</tr>
<tr>
<td>Monopoly</td>
<td>6</td>
<td>Kimmie</td>
</tr>
<tr>
<td>Checkers</td>
<td>2</td>
<td>Calvin</td>
</tr>
</table>
</body>
</html>