Skip to content

Commit ccf9091

Browse files
committed
add size options and submit button
1 parent 165edc5 commit ccf9091

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

Form-Controls/task-Tshirts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,20 @@
8686
<option value="blue">Blue</option>
8787
<option value="black">Black</option>
8888
</select>
89-
89+
90+
<!-- Size -->
91+
<label for="size">T‑Shirt Size</label>
92+
<select id="size" name="size" required>
93+
<option value="">-- Select a size --</option>
94+
<option value="XS">XS</option>
95+
<option value="S">S</option>
96+
<option value="M">M</option>
97+
<option value="L">L</option>
98+
<option value="XL">XL</option>
99+
<option value="XXL">XXL</option>
100+
</select>
101+
102+
<button type="submit">Submit Order</button>
103+
</form>
104+
</body>
105+
</html>

0 commit comments

Comments
 (0)