When you have related groups of inputs like these you should wrap them in a <fieldset> and use a <legend> to label them. You can almost combine the two approaches here: use a <fieldset> instead of a <section> to wrap, and use a <legend> instead of a <p> to label.
https://github.com/fac19/week5-FKAM/blob/5f48fe017de7a7bcf805c5b947330e8fdd3c1110/public/form.html#L30-L32
https://github.com/fac19/week5-FKAM/blob/5f48fe017de7a7bcf805c5b947330e8fdd3c1110/public/listings.html#L22-L25
When you have related groups of inputs like these you should wrap them in a
<fieldset>
and use a<legend>
to label them. You can almost combine the two approaches here: use a<fieldset>
instead of a<section>
to wrap, and use a<legend>
instead of a<p>
to label.