- Create a HTML document with the following elements:
- Filename: index10.html
- Open the following link link
- Without copying the HTML try to create your own version of the Season 1 table
- Each episode link must open in a new tab
- Please use all the table sections
- Create one more row and unify all the cells to show the following Game of Thrones image
- Create the table footer with black background, white font and the center text: Winnipeg
- Dark green color: #2a4c4c
- Dark gray color: #e8eaef
- Light gray color: #f7f9fa
- To have white type you can use the following CSS line
- To center text search for the td align attribute over the MDN site
Example
<table>
<thead>
<tr style="color:white;">
<th>Text in white</th>
</tr>
</thead>
</table>