Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 7: Facilitating User Interaction with HTML Forms!
Instruction
Grouping Form Controls
Grouping controls with fieldset
and legend
helps organize related inputs within a form, making it more user-friendly and visually distinct.
Example Code for Grouping Controls
<form id="order-form" action="order.php" method="post">
<fieldset>
<legend>Crust</legend>
<input type="radio" name="crust" id="crust1" value="thin">
<label for="crus...