hi i need help whit this pls!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Book Inventory</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Book Inventory</h1>
<table>
<thead>
<tr>
<th>Title </th>
<th>Author</th>
<th>Category</th>
<th>Status</th>
<th>Rate</th>
</tr>
</thead>
<tbody>
<tr class="read">
<td>The Three Musketeers</td>
<td>Alexandre Dumas</td>
<td>Historical Novel</td>
<td><span class="status">Read</span></td>
<td class="rate">
<span class="rate"></span>
<span class="rate"></span>
<span class="rate"></span>
</td>
</tr>
<tr class="to-read">
<td>The Plague</td>
<td>Albert Camus</td>
<td>Philosophical Novel</td>
<td><span class="status">To Read</span></td>
<td class="rate">
<span class="rate"></span>
<span class="rate"></span>
<span class="rate"></span>
</td>
</tr>
<tr class="read">
<td>The Metamorphosis</td>
<td>Franz Kafka </td>
<td>Novella</td>
<td><span class="status">Read</span></td>
<td class="rate three">
<span class="rate"></span>
<span class="rate"></span>
<span class="rate"></span>
</td>
</tr>
<tr class="in-progress">
<td>Dead Souls </td>
<td> Nikolai Gogol</td>
<td>Picaresque</td>
<td><span class="status">In Progress</span></td>
<td class="rate">
<span class="rate"></span>
<span class="rate"></span>
<span class="rate"></span>
</td>
</tr>
</tbody>
</table>
</body>
</html>
-
passed 16. Each
spanelement which is a direct child of atdelement of theRatecolumn should have the class ofrateas the first class. -
Failed:17. Each
.rateelement should contain three emptyspanelements. -
Failed:18.
.rateelements placed inside.readrows should have an additional class after therateclass with the value of eitherone,two, orthree, depending on the personal rate.
if i put the numbers 17, 18 working good, the number 16 starting to work bad, and if a put to work good the number 16, the numbers 17, 18 starting to work bad i don’t know. HELP the time dont stop cheers!