Tell us what’s happening:
The td element in your tfoot element’s row should have the text Total Books: N where N is the number of books in your table.
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>
<table>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Publication Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>How to Contribute to Open-Source Projects – A Handbook for Beginners</td>
<td>Hillary Nyakundi</td>
<td> Open Source</td>
<td>2023</td>
</tr>
<tr>
<td>Learn Linux for Beginners: From Basics to Advanced Techniques</td>
<td>Zaira Hira</td>
<td>Linux</td>
<td>2024</td>
</tr>
<tr>
<td>How to Learn to Code and Get a Developer Job</td>
<td> Quincy Larson</td>
<td>Learn To Code</td>
<td>2024</td>
</tr>
<tr>
<td>The Regular Expressions Book – RegEx for JavaScript Developers</td>
<td>Kolade Chris</td>
<td>Regular Expressions</td>
<td>2023</td>
</tr>
<tr>
<td>The Python Code Example Handbook</td>
<td>Farhan Hasin Chowdhury</td>
<td>Python</td>
<td>2023</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">Total Books: </td>
</tr>
</tfoot>
</table>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table