| Line 1: | Line 1: | ||
| + | <form action="Your_Action_Page" method="post"> | ||
| + | <fieldset> | ||
| + | <legend>Select Options:</legend> | ||
| + | |||
| + | <label for="genderSelector">Select Gender:</label> | ||
| + | <select id="genderSelector" name="gender"> | ||
| + | <option value="male">Male</option> | ||
| + | <option value="female">Female</option> | ||
| + | </select> | ||
| + | |||
| + | <br /> | ||
| + | |||
| + | <label for="hairSelector">Select Hair:</label> | ||
| + | <select id="hairSelector" name="hair"> | ||
| + | <option value="hair1">Hair Option 1</option> | ||
| + | <option value="hair2">Hair Option 2</option> | ||
| + | <!-- Add more hair options as needed --> | ||
| + | </select> | ||
| + | |||
| + | <br /> | ||
| + | |||
| + | <label for="armorSelector">Select Armor:</label> | ||
| + | <select id="armorSelector" name="armor"> | ||
| + | <option value="armor1">Armor Option 1</option> | ||
| + | <option value="armor2">Armor Option 2</option> | ||
| + | <!-- Add more armor options as needed --> | ||
| + | </select> | ||
| + | |||
| + | <br /> | ||
| + | |||
| + | <input type="submit" value="Submit"> | ||
| + | </fieldset> | ||
| + | </form> | ||
| + | |||
| + | |||
<div> | <div> | ||
<label for="genderSelector">Select Gender:</label> | <label for="genderSelector">Select Gender:</label> | ||
Revision as of 19:04, 14 September 2023
<form action="Your_Action_Page" method="post">
<fieldset>
<legend>Select Options:</legend>
<label for="genderSelector">Select Gender:</label>
<select id="genderSelector" name="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<label for="hairSelector">Select Hair:</label>
<select id="hairSelector" name="hair">
<option value="hair1">Hair Option 1</option>
<option value="hair2">Hair Option 2</option>
</select>
<label for="armorSelector">Select Armor:</label>
<select id="armorSelector" name="armor">
<option value="armor1">Armor Option 1</option>
<option value="armor2">Armor Option 2</option>
</select>
<input type="submit" value="Submit"> </fieldset>
</form>
<label for="genderSelector">Select Gender:</label>
<select id="genderSelector">
<option value="male">
Male
</option>
<option value="female">
Female
</option>
</select>
<label for="hairSelector">Select Hair:</label>
<select id="hairSelector">
<option value="hair1">
Hair Option 1
</option>
<option value="hair2">
Hair Option 2
</option>
</select>
<label for="armorSelector">Select Armor:</label>
<select id="armorSelector">
<option value="armor1">
Armor Option 1
</option>
<option value="armor2">
Armor Option 2
</option>
</select>
