Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

I don’t understand why it keeps saying “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>os</td>
        <td>shekar</td>
        <td>vce</td>
        <td>2021</td>
      </tr>
      <tr>
        <td>dbms</td>
        <td>rama</td>
        <td>vec</td>
        <td>2022</td>
      </tr>
      <tr>
        <td>cd</td>
        <td>madan</td>
        <td>vce</td>
        <td>2054</td>
      </tr>
      <tr>
        <td>sl</td>
        <td>slrama</td>
        <td>script</td>
        <td>1991</td>
      </tr>
      <tr>
        <td>nsc</td>
        <td>anitha</td>
        <td>vec</td>
        <td>2024</td>
      </tr>
    </tbody>
  <tfoot>
  <td colspan="4">Total Books: N</td>
  </tfoot>
  </table>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

Hi @joshuachux1,

And have you replaced N with the number of books in your table?

Happy coding!

THANK YOU!!!@dhess