Help me in solving FASH05 problem

My issue

Please, tell how to add a main section.

My code

<body>
	<header>
	    <div class="NavBar">
	        <a href="" id="navbar-title">
	            FASHION STORE
	        </a>
	    </div>
	</header>
	<!-- Update the code below this comment -->
	<div>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">
	                </td>
	                <td><img src="https://cdn.codechef.com/download/Contest+images/ROTEST/sunglasses.jpeg" alt="Sun Glasses">
	                </td>
	            <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>
	</div>

You had written main section just outside the div element, but didn’t provide braces into it perhaps this is why the main is not working.