Finished book catalog

This commit is contained in:
bendwit 2025-06-18 10:14:29 +02:00
parent 5601267bb9
commit e1e31058b3

View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Catalog</title>
</head>
<body>
<table>
<thead>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Publication Year</th>
</thead>
<tbody>
<tr>
<td>Neuromancer</td>
<td>William Gibson</td>
<td>sci-fi</td>
<td>1984</td>
</tr>
<tr>
<td>Altered Carbon</td>
<td>Richard K. Morgan</td>
<td>sci-fi</td>
<td>2002</td>
</tr>
<tr>
<td>Romance of the Three Kingdoms</td>
<td>Luo Guanzhong</td>
<td>historical-fiction</td>
<td>AD 169</td>
</tr>
<tr>
<td>Emperor to Citizen</td>
<td>Puyi</td>
<td>memoir</td>
<td>1940</td>
</tr>
<tr>
<td>Catch-22</td>
<td>Joseph Heller</td>
<td>historical-fixtion</td>
<td>1974</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan=4>Total Books: 5</td>
</tr>
</tfoot>
</table>
</body>
</html>