Build a Book Catalog Table - Build a Book Catalog Table

Tell us what’s happening:

what is the problem in the last step
the last element

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>The Monkey</td>
        <td>Mongsterdale</td>
        <td>fairy</td>
        <td>2020</td>
      </tr>
      <tr>
        <td>Saturday Night</td>
        <td>Stephen pande</td>
        <td>Entertainer</td>
        <td>2026</td>
      </tr>
      <tr>
        <td>Feelalone</td>
        <td>Jagathala nathu</td>
        <td>Horror</td>
        <td>1999</td>
      </tr>
      <tr>
        <td>Kujathalam</td>
        <td>Thambali</td>
        <td>Comedy</td>
        <td>2010</td>
      </tr>
      <tr>
        <td>Naticla mile</td>
        <td>Werteridane</td>
        <td>thriller</td>
        <td>2021</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/137.0.0.0 Safari/537.36

Challenge Information:

Build a Book Catalog Table - Build a Book Catalog Table

the square bracket are part of the placeholder, not to be included in the text. See user story 7

<!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 border>
    <thead>
      <tr>
        <th>Title</th>
        <th>Author</th>
        <th>Genre</th>
        <th>Publication Year</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>The 48 Laws of Power</td>
        <td>Robert Greene</td>
        <td>Self-help book</td>
        <td>2006</td>
      </tr>
      <tr>
        <td>The 33 Strategies of War</td>
        <td>Robert Greene</td>
        <td>Self-help book</td>
        <td>1999</td>
      </tr>
      <tr>
        <td>The 48 Laws of Power</td>
        <td>Robert Greene</td>
        <td>Self-help book</td>
        <td>1999</td>
      </tr>
      <tr>
        <td>The 48 Laws of Power</td>
        <td>Robert Greene</td>
        <td>Self-help book</td>
        <td>1999</td>
      </tr>
      <tr>
        <td>The Art of Seduction</td>
        <td>Robert Greene</td>
        <td>Self-help book</td>
        <td>2001</td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <td colspan="4">Total Books: 5</td>
      </tr>
    </tfoot>
  </table>
</body>

</html>

hi @emanueltech101 , please create your own topic to ask for help

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.