Tell us what’s happening:
I written the code but it showing mismatch of text in tfoot element but i written the as same in the test case.i aslo copied the the text shown in the test but it again showing mismatch
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>os</td>
<td>shekar</td>
<td>vce</td>
<td>2021</td>
</tr>
<tr>
<td>dbms</td>
<td>rama</td>
<td>vec</td>
<td>2022</td>
</tr>
<tr>
<td>cd</td>
<td>madan</td>
<td>vce</td>
<td>2054</td>
</tr>
<tr>
<td>sl</td>
<td>slrama</td>
<td>script</td>
<td>1991</td>
</tr>
<tr>
<td>nsc</td>
<td>anitha</td>
<td>vec</td>
<td>2024</td>
</tr>
</tbody>
<tfoot>
<td colspan="4">Total Books: [number of books in your table]</td>
</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/131.0.0.0 Safari/537.36
Challenge Information:
Build a Book Catalog Table - Build a Book Catalog Table