Materialien zum Unterricht

Create Lists and Tables in HTML

8. The First List (Unordered List)

In HTML, you can create lists.

There are unordered <ul> and ordered <ol> lists.

List items are initiated with the tag <li>.

9. Tables

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.

10. Overall Impression

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:

  1. <html>... Basic Structure
  2. <h1>... Headings
  3. <p>... Paragraphs
  4. <ul> <li>... unordered list
  5. <ol><li>... ordered list
  6. <table><tr><th>... table