Tell us what’s happening:
On step 4 you should have 5 columns, which visually I do but i ca’t seem to pass that step.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0
Challenge Information:
Build a Book Inventory App - Build a Book Inventory App
ILM
November 18, 2025, 6:07pm
2
Hey there,
Please update the message to include your code. The code was too long to be automatically inserted by the help button.
When you enter a code, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Book Inventory</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Book Inventory</h1>
</header>
<main>
<table>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Category</th>
<th>Status</th>
<th>Rate</th>
</tr>
</thead>
<tbody>
<tr class="read">
<th>Book 1</th>
<td class="author">Author</td>
<td class="type">Cateogry</td>
<td><span class="status">Read</span></td>
<td>
<span class="rate one">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
<tr class="to-read">
<th>Book 1</th>
<td class="author">Author</td>
<td class="type">Cateogry</td>
<td><span class="status">To Read</span></td>
<td>
<span class="rate two">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
<tr class="in-progress">
<th>Book 1</th>
<td class="author">Author</td>
<td class="type">Cateogry</td>
<td><span class="status">In Progress</span></td>
<td>
<span class="rate three">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
<tr class="in-progress">
<th>Book 1</th>
<td class="author">Author</td>
<td class="type">Cateogry</td>
<td><span class="status">In Progress</span></td>
<td>
<span class="rate two">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
<tr class="to-read">
<th>Book 1</th>
<td class="author">Author</td>
<td class="type">Cateogry</td>
<td><span class="status">To Read</span></td>
<td>
<span class="rate one">
<span></span>
<span></span>
<span></span>
</span>
</td>
</tr>
</tbody>
</table>
</main>
</body>
</html>
This is the HTML
ILM
November 19, 2025, 10:37am
4
try to use only tds, not ths in the rows below the header row