Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

Hi there, i belive i have followed the instructions,i dont know why my code is still wrong. i replaced the [number of books in your table] with 20,which is the total in my table yet still wrong,. Can someone please help point out where i’m getting it wrong?. Thank you

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>
<table>
  <thead>
    <tr>
      <th>Title</th>
      <th>Author</th>
      <th>Genre</th>
      <th>Publication Year</th>
      </tr>
      </thead>
      <tbody>
      <tr>
        <td>Obi</td>
        <td>Ada</td>
        <td>Chika</td>
        <td>Peter</td>
        </tr>
              <tr>
        <td>Obi</td>
        <td>Ada</td>
        <td>Chika</td>
        <td>Peter</td>
        </tr>
              <tr>
        <td>Obi</td>
        <td>Ada</td>
        <td>Chika</td>
        <td>Peter</td>
        </tr>
              <tr>
        <td>Obi</td>
        <td>Ada</td>
        <td>Chika</td>
        <td>Peter</td>
        </tr>
              <tr>
        <td>Obi</td>
        <td>Ada</td>
        <td>Chika</td>
        <td>Peter</td>
        </tr>
        </tbody>
  <tfoot>
    <tr>
    <td colspan="4">Total Books:  20</td>
    </tr>
    </tfoot>
    </table>
     
<body>
</body>

</html>

Your browser information:

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

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

Hi,
why is the total number of books 20? You don’t have 20 books in your table. You also have an extra space before 20. remove the space, then remove 20 and add the correct number.
Good luck!