Skip to content

Commit f278f2c

Browse files
committed
Refine form details and validation
1 parent a4deffe commit f278f2c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Form-Controls/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<link rel="stylesheet" href="./style.css">
7-
<title>My form exercise</title>
7+
<title>Product Pick Form</title>
88
<meta name="description" content="" />
99
<meta name="viewport" content="width=device-width, initial-scale=1" />
1010
</head>
@@ -26,7 +26,7 @@ <h1>Product Pick</h1>
2626
<div class="field">
2727
<label for="colour">Colour choice :</label>
2828
<select required id="colour" name="colour">
29-
<option selected value="">--Please Select--</option>
29+
<option disabled selected value="">--Please Select--</option>
3030
<option value="red">Red</option>
3131
<option value="black">Black</option>
3232
<option value="white">White</option>
@@ -35,7 +35,7 @@ <h1>Product Pick</h1>
3535
<div class="field">
3636
<label for="size">Size :</label>
3737
<select required id="size" name="size">
38-
<option selected value="">--Please Select--</option>
38+
<option disabled selected value="">--Please Select--</option>
3939
<option value="XS">XS</option>
4040
<option value="S">S</option>
4141
<option value="M">M</option>
@@ -56,7 +56,7 @@ <h1>Product Pick</h1>
5656
</main>
5757
<footer>
5858
<!-- change to your name-->
59-
<p>By HOMEWORK SOLUTION</p>
59+
<p>SandzSoft</p>
6060
</footer>
6161
</div>
6262
</body>

0 commit comments

Comments
 (0)