How to solve Lesson 24.2(web dev fundamentals) FORM STYLING
Please, I've tried to solve the code repo in lesson 24.2 (CSS) of web development fundamentals but couldn't , My main issue is to properly attach the br and div tags on the required sections html code, and then also the corresponding CSS code to make it produce the required output. Please,if you have solved this repo, post your html & css form section code for it, Or just tell me what to do about , how to solve it. Below is the html code sample of the form section :. Note:( I already added the div and br tags, but don't know if I did it correctly, you can correct it) <section> <form id="buy"> <div class="form-section"> <label for="Adult">Adult:</label><br> <input type="text" id="Adult" placeholder="Adult tickets"> </div> <div class="form-section"> <label for="Children">Children:</label><br> <input type="text" id="Children" placeholder="Children's tickets"> </div> <div class="form-section"> <input type="button" value="Buy"> </div> </form> </section>