Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

Sorry to bother you, last time I did this it was pretty rudimentary , so I hesitate to do so again however, I think this is a bug, the only check mark I don’t get is the last one, I looked it up on google , I’m doing it right and also according to the hint section, I even tried copying it , resting the exercise and pasting it , all to no avail

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>
</body>

<!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>Title Author Genre Publication Year
      <tr>
      <th>Title  </th>
      <th>Author</th>
      <th>Genre</th>
      <th>Publication Year</th>
      </tr>
    </thead>
     <tbody>
       <tr><td>harry bindlestiff</td>
           <td>ben overton</td>
           <td>politics</td>
           <td>1970</td>
         </tr> 
       <tr><td>pictures</td>
           <td>bon homme</td>
           <td>france</td>
           <td>2080</td></tr>
       <tr><td>people</td>
           <td>everyone</td>
           <td>current history</td>
           <td>2025</td></tr>
       <tr><td>I died young</td>
           <td>james dean</td>
           <td>reality</td>
           <td>2020</td></tr>
       <tr><td>the flash</td>
           <td>barry alan</td>
           <td>flash</td>
           <td>1945</td>
     </tbody>
     <tfoot>
       <tr>
         <td colspan="4">Total Books:5</td>
      </tr>
     </tfoot>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.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

You’re just missing a space before the number of books. :slight_smile:

1 Like