Tell us what’s happening:
- The td element in your tfoot element’s row should have the text
Total Books: [number of books in your table].
As you can see below, I have the exact wording as it was cut and pasted from the instructions.
Your code so far
<!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>
</body>
<table>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Publication Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pages</td>
<td>Year</td>
<td>Category</td>
<td>Hardcover</td>
</tr>
<tr>
<td>Pages</td>
<td>Year</td>
<td>Category</td>
<td>Hardcover</td>
</tr>
<tr>
<td>Pages</td>
<td>Year</td>
<td>Category</td>
<td>Hardcover</td>
</tr>
<tr>
<td>Pages</td>
<td>Year</td>
<td>Category</td>
<td>Hardcover</td>
</tr>
<tr>
<td>Pages</td>
<td>Year</td>
<td>Category</td>
<td>Hardcover</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">Total Books: [number of books in your table]</td>
</tr>
</tfoot>
</table>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table