Help me in solving FASH05 problem

My issue

wht is the wrong in my code

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">
            <tr>
                <td><img src="https://cdn.codechef.com/download/Contest+images/ROTEST/tshirt.jpeg" alt="T-shirts" class="Item-img"></td>
                <td><img src="https://cdn.codechef.com/download/Contest+images/ROTEST/sunglasses.jpeg" alt="Sun Glasses" 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/perfume.jpeg" alt="Perfumes" class="Item-img"></td>
            </tr>
            <tr>
                <td><a href="" class="item-tag">T-Shirts</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>
            
        </table>
    </div>
</main>	
	
</body>

Learning course: Projects using HTML / CSS
Problem Link: FS FASHION OPTIONS HTML Practice Problem in Projects using HTML / CSS - CodeChef

what is the problem in my code