Tell us what’s happening:
Step 13 keeps on showing up as an error for me. I have looked at YouTube examples as well as other freecodecamp queries to fix my code but it is still not working
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>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Publication Year</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">Total Books: [5]</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Atomic Habits</td>
<td>James Clear</td>
<td>Non-Fiction</td>
<td>2018</td>
</tr>
<tr>
<td>The Jakarta Method</td>
<td>Vincent Bevins</td>
<td>Non-fiction</td>
<td>2020</td>
</tr>
<tr>
<td>Congratulations by the way</td>
<td>George Saunders</td>
<td>Non-fiction</td>
<td>2014</td>
</tr>
<tr>
<td>Women, Race and Class</td>
<td>Angela Davis</td>
<td>Non-fiction</td>
<td>1981</td>
</tr>
<tr>
<td>My Year of Rest and Relaxation
</td>
<td>Ottessa Moshfegh</td>
<td>Fiction</td>
<td>2018</td>
</tr>
</tbody>
</table>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table