35 lines
673 B
HTML
35 lines
673 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Trasy</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="topbar">
|
|
<h1>TODO</h1>
|
|
</div>
|
|
<div class="content">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Task</th>
|
|
<th>Deadline</th>
|
|
<th>Waga</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- content -->
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |