This commit is contained in:
2024-06-08 19:49:25 +02:00
parent 08d36ffa85
commit ed396ddd4d
3 changed files with 2 additions and 2 deletions

32
stranky/tabulka.html Normal file
View File

@@ -0,0 +1,32 @@
<head>
<link rel="stylesheet" href="../assets/tabulka.css">
</head>
<body>
<h1>Dodávanie tovaru</h1><br>
<table>
<thead>
<tr>
<th>Typ</th>
<th>Čas</th>
<th>Kedy</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lacnejšie</td>
<td>Pred otvorením</td>
<td>Každý tretí deň</td>
</tr>
<tr>
<td>Drahšie</td>
<td>Pred otvorením - do obeda</td>
<td>Každý tretí deň</td>
</tr>
<tr>
<td>Najdrahšie</td>
<td>Na objednávku</td>
<td>Podľa zákazníka</td>
</tr>
</tbody>
</table>
</body>