Untitled
unknown
plain_text
2 years ago
1.0 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Archived Todos</title>
<link rel="stylesheet" href="archive.css">
</head>
<body>
<nav>
<div class="container">
<a href="index.html">Home</a>
<a href="archive.html">Archive</a>
</div>
</nav>
<div class="container">
<div class="archive-todos">
<h2>Archived Todos</h2>
<table id="archiveTable">
<thead>
<tr>
<th>Name</th>
<th>Priority</th>
<th>Status</th>
<th>Restore</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="archiveBody"></tbody>
</table>
</div>
</div>
<script src="archive.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment