Skip to content

Commit 8fb3ab3

Browse files
authored
Enhance T-shirt size selection and update footer
Updated T-shirt size selection options and footer name.
1 parent 68f1c61 commit 8fb3ab3

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

Form-Controls/index.html

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,25 @@ <h1>Product Pick</h1>
4444
<label for="green">Green</label>
4545
</fieldset>
4646

47-
<!-- Allow the customer to choose a T-shirt size -->
47+
<!-- Allow the customer to choose a T-shirt size. Provide sizes: XS, S, M, L, XL, XXL -->
4848

49-
<!-- Provide sizes: XS, S, M, L, XL, XXL -->
50-
51-
<!-- All fields must be required -->
49+
<label for="size">T-shirt Size:</label>
50+
<select id="size" name="size" required>
51+
<option value="">Choose a size</option>
52+
<option value="XS">XS</option>
53+
<option value="S">S</option>
54+
<option value="M">M</option>
55+
<option value="L">L</option>
56+
<option value="XL">XL</option>
57+
<option value="XXL">XXL</option>
58+
</select>
59+
60+
<button type="submit">Submit Order</button>
5261

5362
</form>
5463
</main>
5564
<footer>
56-
<!-- change to your name-->
57-
<p>By HOMEWORK SOLUTION</p>
65+
<p>By Khaliun Baatarkhuu</p>
5866
</footer>
5967
</body>
6068
</html>

0 commit comments

Comments
 (0)