Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

The code looks accurate, but I keep getting this error: 13. The td element in your tfoot element’s row should have the text Total Books: [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>
      <caption>Book Catalog</caption>
      <thead>
        <tr>
        <th>Title</th>
        <th>Author</th>
        <th>Genre</th>
        <th>Publication Year</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr>
<tr>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr><tr>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr><tr>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr><tr>
          <td>1</td>
          <td>2</td>
          <td>3</td>
          <td>4</td>
        </tr>

      </tbody>
      <tfoot>
        <tr>
       <td colspan="4">
         Total Books: [number of books in your table]
       </td>
       </tr>
        </tfoot>

    </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

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

double check the user story, are you sure that is the text you need to write in the element?

also make sure that there is only the text inside the element