mirror of
https://github.com/BenDWit/freecodecamp.git
synced 2025-12-23 15:09:59 +01:00
Finished book catalog
This commit is contained in:
parent
5601267bb9
commit
e1e31058b3
1 changed files with 57 additions and 0 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue