Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

Don’t know what’s wrong. code looks aiit to me, can i get help?

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>Open Source</td>
        <td>Childern's book</td>
        <td>2023</td>
      </tr>
      <tr>
        <td>Learn Linux for Beginners: From Basics to Advanced Techniques</td>
        <td>Linux</td>
        <td>Childern's book</td>
        <td>2024</td>
      </tr>
      <tr>
        <td>How to Learn to Code and Get a Developer Job</td>
        <td>Code to learn</td>
        <td>Childern's book</td>
        <td>2024</td>
      </tr>
      <tr>
        <td>The Regular Expressions Book, RegEx for JavaScript Developers</td>
        <td>Regular Expression</td>
        <td>Childern's book</td>
        <td>2023</td>
      </tr>
      <tr>
        <td>The Python Code Example Handbook</td>
        <td>Python</td>
        <td>Childern's book</td>
        <td>2023</td>
      </tr>
    </tbody>
    <tfooter>
      <tr>
        <td colspan="4">Total Books: 5</td>
      </tr>
    </tfooter>
  </table>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

What tests are you failing?

What specific lines of code do you think should meet those tests?

You should have one tfoot element within your table element.

Is there a tfoot element in your table?

used “tfooter” instead of “tfoot“