In HTML, you can create lists.
There are unordered <ul>
and ordered <ol>
lists.
List items are initiated with the tag <li>
.
Tables are useful for presenting information in a concise and clear manner.
A table is initiated with the tag <table>
and closed with the tag </table>
.
After that, a row is initiated with the tag <tr>
.
The individual table data in the respective columns can be inserted with the tag <td>
.
Special column or row headings can be initiated with the tag <th>
.
All tags must be closed at the end of each entry!
Add the table to your HTML document.
Critically review your work in the browser.
The source code contains a series of formatting.
The links in the following list lead to the explanations: