A. Movies
Task 1
Create a webpage that displays information about popular movies.
The finished table should look like the example shown below.
<table border="1">
<tr>
<th>Movie</th>
<th>Genre</th>
<th>Director</th>
<th>Tickets Sold</th>
</tr>
<tr>
<td>Avatar</td>
<td>Sci-Fi</td>
<td>James Cameron</td>
<td>390 million</td>
</tr>
<tr>
<td>Titanic</td>
<td>Drama</td>
<td>James Cameron</td>
<td>380 million</td>
</tr>
<tr>
<td>Avengers: Endgame</td>
<td>Action</td>
<td>Anthony & Joe Russo</td>
<td>350 million</td>
</tr>
<tr>
<td>Star Wars</td>
<td>Sci-Fi</td>
<td>George Lucas</td>
<td>340 million</td>
</tr>
</table>
Task 2
Style the table to look like the screenshot below.