Tell us what’s happening:
Last step is not being accepted
tfoot text one
I have entered
Total Books: 4
Because I have a total of 4 books
tried
Total Books: 04
Total Books: four
Still not accepted
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 Almanack of Naval Ravikant</td>
<td>Naval</td>
<td>Health, Wealth, relationships</td>
<td>2016</td>
</tr>
<tr>
<td>The bed of Procrustes</td>
<td>Nassim Nicholas Taleb</td>
<td>Philosophy, aphorisms</td>
<td>2020</td>
</tr>
<tr>
<td>The Prophet</td>
<td>Khaled Hosseini</td>
<td>Poetry Philosophy</td>
<td>1990s</td>
</tr>
<tr>
<td>The Courage to be disliked</td>
<td>Ichiro</td>
<td>Philosophy</td>
<td>1990s</td>
</tr>
<tr>
<td>The Compound Effect</td>
<td>Dont remember</td>
<td>Self-help</td>
<td>1990s</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">Total Books: 4</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/136.0.0.0 Safari/537.36
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table