What's wrong in my code?
<html> <head> <title>Product Name</title> </head> <body> <header><h1>New Awesome Product</h1></header> <main> <h1>Irving</h1> <img src="https://blob.sololearn.com/courses/np.png"> <p>Introducing our <b>lastest product</b>, designed to make your life easier and more efficient.</p> <!-- Here i have used <p> tag to use paragraph as description --> <ul> <li>Feature 1</li> <li>Feature 2</li> <li>Feature 3</li> </ul> <h2>Order Now!</h2> <form> <label for= "size">Size</label> <select id="size"> <option selected>Small</option> <option>Large</option> <option>XL</option> </select> <label for= "color" >Color</label> <select id="color"> <option selected>Red</option> <option>Green</option> <option>Yellow</option> </select><br> <label for= "name">Name</label> <input type="text" id="name"><br> <label for= "email">Email</label> <input type="email" id="email"><br> <input type="submit"> </form> </main> <footer> <p>Made with 3</p> </footer> </body> </html>