Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

i dont undertstand what is wrong and i need help also i do know i put the letter N where the number of books is supposed to be i was just trying everything

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>os</td>
        <td>shekar</td>
        <td>vce</td>
        <td>2021</td>
      </tr>
      <tr>
        <td>dbms</td>
        <td>rama</td>
        <td>vec</td>
        <td>2022</td>
      </tr>
      <tr>
        <td>cd</td>
        <td>madan</td>
        <td>vce</td>
        <td>2054</td>
      </tr>
      <tr>
        <td>sl</td>
        <td>slrama</td>
        <td>script</td>
        <td>1991</td>
      </tr>
      <tr>
        <td>nsc</td>
        <td>anitha</td>
        <td>vec</td>
        <td>2024</td>
      </tr>
    </tbody>
   <tfoot>
       <td colspan="4">Total Books: N</td>
   </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/145.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

if anyone replies ill most likely be at lunch as of the time of postig this reply

Well, the test error clearly says what to do:

where N is the number of books in your table.

i did i put 5 it aint work but let me try again