Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

it says the last part of my code has an issue I’m failing to understand which part specifically

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><strong>Title</strong></th>
        <th><strong>Author</strong></th>
        <th><strong>Genre</strong></th>
        <th><strong>Publication Year</strong></th>
        </tr>
        </thead>
  <tbody>    

        <tr>
          <td>Mr</td>
          <td>Saun</td>
          <td>Romance</td>
          <td>Print</td>
        </tr>

      <tr>
        <td>Ms</td>
        <td>James</td>
        <td>Horror</td>
        <td>publish</td>
      </tr>

      <tr>
        <td>Ms</td>
        <td>Sprout</td>
        <td>Suspense</td>
        <td>Copies</td>
      </tr>

      <tr>
        <td>Mr</td>
        <td>Ford</td>
        <td>Horror</td>
        <td>Glad</td>
      </tr>
      
      <tr>
        <td>Mr</td>
        <td>Brave</td>
        <td>Sci-fi</td>
        <td>bread</td>
      </tr>
    </tbody>
        <tfoot>
          <tr>
          <td colspan="4">Total Books: [5]</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/135.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

Hi there :waving_hand:,

In your code:

<td colspan="4">Total Books: [5]</td>

You should not include the square brackets [], just display the number.

Keep going, you’re doing great!