Help me in solving FASH05 problem

My issue

Did you add two anchor elements?

My code

<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>
	            </tr>
	            <tr>
	                <td>
	                    <a href="#" class="Item-tag">T-shirts</a>
	                </td>
	                <td>
	                    <a href="#" class="Item-tag">Sun<br>Glasses</a>
	                </td>
	            </tr>
	        </table>
	    </div>
	</main>
	
	
</body>
// your code goes here

Learning course: Projects using HTML / CSS
Problem Link: Table to list fashion items Practice Problem in Projects using HTML / CSS