Untitled
unknown
plain_text
2 years ago
869 B
11
Indexable
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container mt-5">
<h2>Seznam uživatelů</h2>
<table class="table table-bordered">
<tr>
<th>Jméno</th>
<th>Příjmení</th>
<th>Email</th>
</tr>
<tbody>
<tr>
<td>Martin</td>
<td>Blizníkov</td>
<td>[email protected]</td>
</tr>
<tr>
<td>David</td>
<td>Baluch</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>Editor is loading...
Leave a Comment