*(Use a HTML editor of your choice to work on your assignments.)
Part 1. Create a table with a size one border to list the movie titles and prices: The table has two columns. The first row has a gray background color and contains the text “Movie Title” centered in the first column and “Price” centered in the second column. The second row has a white background which starts with the “The Jungle Book” title and price of $22.96. The next row has the “Marvel’s Captain America: Civil War” title and price of $22.99. The last row has the “Star Wars: The Force Awakens” title and price of $29.96. NOTE: The font family used here is Georgia 16-font size for the table header and Arial 14-font size for the table cell contents. The font usage can be any of your choices.
Expert Answer
<html>
<head>
<style>
th{
font-family:Georgia;
font-size:16px;
background-color:gray;
}
td{
font-family:Arial;
font-size:14px;
}
</style>
</head>
<body>
<table border = 1>
<tr>
<th>Movie title </th>
<th>Price </th>
</tr>
<tr>
<td>The Jungle Book </td>
<td>$22.96 </td>
</tr>
<tr>
<td>Marvel’s Captain America : Civil war</td>
<td>$22.99</td>
</tr>
<tr>
<td>Star Wars : The Force Awakens </td>
<td>$29.96 </td>
</tr>
</table>
</body>
</html>
if you have any doubts, you can ask in comment section.