This commit is contained in:
2024-06-06 10:00:58 +02:00
parent a16bbf9bc0
commit 0ef41d5efe
3 changed files with 66 additions and 1 deletions

32
stranky/tabulka.html Normal file
View File

@@ -0,0 +1,32 @@
<head>
<link rel="stylesheet" hrer="tabulka.css">
</head>
<body>
<h1>Sample Table</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
<tr>
<td>John Doe</td>
<td>30</td>
<td>Software Engineer</td>
</tr>
<tr>
<td>Jane Smith</td>
<td>25</td>
<td>Graphic Designer</td>
</tr>
<tr>
<td>Mike Johnson</td>
<td>35</td>
<td>Project Manager</td>
</tr>
</tbody>
</table>
</body>