Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

I couldn’t pass the 13th step.

Total Books: 5

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>Vendor of Sweets</td>
      <td>R.K. Narayan</td>
      <td>Non-fiction</td>
      <td>2007</td>
    </tr>
    <tr>
      <td>Romeo Juliet</td>
      <td>Shakespear</td>
      <td>Fiction</td>
      <td>1894</td>
    </tr>
    <tr>
      <td>The Truth Behind Their Lies</td>
      <td>Amanda Wick</td>
      <td>Fiction</td>
      <td>2010</td>
    </tr>
    <tr>
      <td>The Edge of Water</td>
      <td>George Elliot</td>
      <td>Fiction</td>
      <td>1985</td>
    </tr>
    <tr>
      <td>David Copperfield</td>
      <td>Charles Dickens</td>
      <td>Non-fiction</td>
      <td>1770</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td  colspan="4">
        Total Books: 5
      </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/138.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

Try removing the excess whitespace from that line:

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