Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

Failed:13. The td element in your tfoot element’s row should have the text Total Books: [number of books in your table].

Assist guys.

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>Games</td>
        <td>Peter</td>
        <td>Fun</td>
        <td>2000</td>
    </tr>

    <tr>
        <td>Sex</td>
        <td>Paul</td>
        <td>Fun</td>
        <td>2005</td>
    </tr>

    <tr>
        <td>Traveling Times</td>
        <td>Pamela .l</td>
        <td>Exploi</td>
        <td>2017</td>
    </tr>

    <tr>
        <td>Money and Power</td>
        <td>Onana</td>
        <td>Curiosity</td>
        <td>2023</td>
    </tr>

   <tr>
        <td>Schools</td>
        <td>Thoroty</td>
        <td>Knowledge</td>
        <td>2024</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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

I used the exact same title foot discription with colon span of 4 in the title row but still unable to pass the code. anything i did wrong?

You should have an actual number in here

1 Like

I Passed it. Thanks.

1 Like