Welcome to the forum @warigodbless,
We can’t test your code from screenshots. Please use the “Help” button on the challenge instead
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 Help button located on the challenge.
The 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.
Tell us what’s happening:
Building a book catalog table - i’ve followed all guideline precisely but yet it keep show not complete and ive cross checked it over and over again , it seems like the algorithm is not reviewing my code accurately
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>
<caption>Book Of The Year Award</caption>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
<th>Publication Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Brotherhood</td>
<td>John Grisham</td>
<td>Tragedy-comedy</td>
<td>1995</td>
<tr>
<tr>
<td>Eze Goes To School</td>
<td>chinue</td>
<td>comedy-tragedy-comedy</td>
<td>1965</td>
<tr>
<tr>
<td>The Jurety</td>
<td>John Grisham</td>
<td>comedy-tragedy-melody</td>
<td>1999</td>
<tr>
<tr>
<td>The Juryou</td>
<td>John Grisham</td>
<td>comedy-tragedy-melody</td>
<td>1999</td>
<tr>
<tr>
<td>The Juu</td>
<td>John Grisham</td>
<td>comedy-tragedy-melody</td>
<td>1999</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/149.0.0.0 Safari/537.36
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table


