Notes from WTF course
<ul>
<li>Element 1</li>
<li>Element 2</li>
</ul>
<ol>
<li>Element 1</li>
<li>Element 2</li>
</ol>
<nav>
<ul>
<li>Element 1</li>
<li>Element 2</li>
</ul>
</nav>
<dl>
: description list, lista opisów
<dt>
: description term
<dd>
: description details
<section class="data">
<table class="table">
<caption>Lista osób</caption>
<thead>
<tr>
<th>Imię</th>
<th>Nazwisko</th>
</tr>
</thead>
<tbody>
<tr>
<td>Imię 1</td>
<td>Nazwisko 1</td>
</tr>
<tr>
<td>Imię 2</td>
<td>Nazwisko 2</td>
</tr>
</tbody>
</table>
</section>
<table>
: tabela
<tr>
: wiersz tabeli
<td>
: komórka tabeli
<thead>
: nagłowek tabeli
<th>
: komórka w nagłowku tabeli
<tbody>
: ciało tabeli
<caption>
: opis tabeli