Help me in solving FASH05 problem

My issue

This is my code why is it asking did you add anchor elements?

FASHION STORE
<main>
    <div class="Items">
        <table id="item-table">
            <tr>
                <td>
                    <img class="Item-img" src="https://cdn.codechef.com/download/Contest+images/ROTEST/tshirt.jpeg" alt="T-Shirts">
                </td>
                <td>
                    <img class="Item-img" src="https://cdn.codechef.com/download/Contest+images/ROTEST/sunglasses.jpeg" alt="Sun Glasses">
                </td>
            </tr>
            <tr>
                <td>
                    <a class="Item-tag" href="">T-Shirts</a>
                </td>
                <td>
                    <a class="Item-tag" href="">Sun<br>Glasses</a>
                </td>
            </tr>
        </table>
    </div>
</main>

My code

// your code goes here

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