tabulka
This commit is contained in:
32
stranky/tabulka.html
Normal file
32
stranky/tabulka.html
Normal 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>
|
||||
Reference in New Issue
Block a user