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:
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 aborder="1"
attribute to the<table>
tag.