My issue
Did you add a table element with id=“item-table” inside the div element ? what is this meant to be.
My code
// your code goes here
<body>
<header>
<div class="NavBar">
<a href="" id="navbar-title">
FASHION STORE
</a>
</div>
</header>
<!-- Update the code below this comment -->
<main>
<div class = "items">
<table id =" item-table">
<tbody>
<tr>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/tshirt.jpeg" alt = "Tshirts" class = "item-img" > </td>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/sunglasses.jpeg" alt =
"sunglasses" class = "item-img" >
</td>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/shirts.jpeg" alt = "shirts" class = "item-img" > </td>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/shoes.jpeg" alt = "shoes" class = "item-img" > </td>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/pants.jpeg" alt = "pants" class = "item-img" > </td>
<td img src="https://cdn.codechef.com/download/Contest+images/ROTEST/Perfumes.jpeg" alt = "Perfumes" class = "item-img" >
</td>
</tr>
<tr>
<td><a href = " " class="item-tag" > Tshirts</a>
</td>
<td> <a href = " " class="item-tag" >sun <br>glasses</a>
</td>
<td><a href = " " class="item-tag" >shirts</a>
</td>
<td> <a href = " " class="item-tag" >shoes</a>
</td>
<td> <a href = " " class="item-tag" >pants</a>
</td>
<td> <a href = " " class="item-tag" >Perfumes</a>
</td>
</tr>
</tbody>
</table>
</div>
</main>
</body>
Learning course: [Projects using HTML / CSS](https://www.codechef.com/practice/html)
Problem Link: https://www.codechef.com/practice/course/html/ROTEST/problems/FASH05