Skip to content

Files

Latest commit

46c6185 · Feb 24, 2023

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 24, 2023
Feb 24, 2023

Tables

Similar to the Transport list, we now need to add a table showing the ticket prices.

Task: Add the following table after the Transport list:

contentImage

Hint: A table should start with the <table> tag. Each row starts with a <tr> tag, while the table cells are represented using <td> tags.
For the table header, use the <th> tags instead of <td>.
To make the table visible, add a border="1" attribute to the <table> tag.