Skip to main content

Exercise 10

  1. Create a HTML document with the filename index10.html
  2. Open the following link link
  3. Without copying the HTML try to create your own version of the Season 1 table
  4. Each episode link must open in a new tab
  5. Please use all the table sections
  6. Create one more row and unify all the cells to show the following Game of Thrones image
  7. Create the table footer with black background, white font and the center text: Regina

Extra help:

  1. Dark green color: #2a4c4c
  2. Dark gray color: #e8eaef
  3. Light gray color: #f7f9fa
  4. To have white type you can use the following CSS line
  5. 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>