Skip to content

Commit 978ad11

Browse files
Make some change to for attribute and it value lower case.
1 parent 7ec34c7 commit 978ad11

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Form-Controls/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ <h1>Product Pick</h1>
1414
<main>
1515
<form>
1616
<div>
17-
<label for="Name">Customer name:</label>
18-
<input type="text" id="Name" name="Name" required placeholder="John Smith">
17+
<label for="name">Customer name:</label>
18+
<input type="text" id="Name" name="name" required placeholder="John Smith">
1919
</div>
2020
<br>
2121
<div>
22-
<label for="Email">Customer email:</label>
23-
<input type="email" id="Email" name="Email" required placeholder="example123@gmail.com">
22+
<label for="email">Customer email:</label>
23+
<input type="email" id="Email" name="email" required placeholder="example123@gmail.com">
2424
</div>
2525
<br>
2626
<fieldset>
@@ -34,8 +34,8 @@ <h1>Product Pick</h1>
3434
</fieldset>
3535
<div>
3636
<br>
37-
<label for="Size">Shirt size</label>
38-
<select id="Size" name="Shirt size" required>
37+
<label for="size">Shirt size</label>
38+
<select id="size" name="Shirt size" required>
3939
<option value="XS">XS</option>
4040
<option value="S">S</option>
4141
<option value="M">M</option>

0 commit comments

Comments
 (0)