Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1.02 KB

ex_10.md

File metadata and controls

28 lines (25 loc) · 1.02 KB

Exercise 10

  • 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

Extra help:

  • 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>