Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

I’ve checked my code, read the user story and the test instructions and, tried various times but the last step isn’t completing. Can I get help please?

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>
            Balcony Of Fog
          </td>
          <td>
            Rich Shapero
          </td>
          <td>
            Fiction
          </td>
          <td>
            2020
          </td>
        </tr>
        <tr>
          <td>
            From Idea to App: Creating iOs UI, Animations, and Gestures
          </td>
          <td>
            Shawn Welch
          </td>
          <td>
            N/A
          </td>
          <td>
            2011
          </td>
        </tr>
        <tr>
          <td>
            JavaScript for the World Wide Web 4th Ed.
          </td>
          <td>
            Tom Negrino + Dori Smith
          </td>
          <td>
            N/A
          </td>
          <td>
            2001
          </td>
        </tr>
        <tr>
          <td>
            The Principles pf Beautiful Web Design
          </td>
          <td>
            Jason Beaird
          </td>
          <td>
            N/A
          </td>
          <td>
            2007
          </td>
        </tr>
        <tr>
          <td>
            murach's C# 2015
          </td>
          <td>
            Anne Boehm + Joel Murach
          </td>
          <td>
            N/A
          </td>
          <td>
            2015
          </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/139.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table
https://www.freecodecamp.org/learn/full-stack-developer/lab-book-catalog-table/build-a-book-catalog-table

Hi @salyxhigurashi and welcome to our community!

I think it’s an issue with additional spaces inside the footer’s td element.
If you collapse it onto one line and ensure that there are no additional spaces inside the td element, you should pass.

1 Like

They line up and still no pass @igorgetmeabrain
nvm i misread. thank you!

1 Like