My issue
Iadded img with src and alt also given for this statement still asking did u added while submitting option and output came exactly.
May I know where I did wrong in my solution for this statement.
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">
<tbody>
<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>
</tbody>
</table>
</div>
</main>
</body>
Learning course: Projects using HTML / CSS
Problem Link: Table to list fashion items Practice Problem in Projects using HTML / CSS