Skip to content

Commit b9175e7

Browse files
committed
fix the indentation formating for the child elements
1 parent 7bcf668 commit b9175e7

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

Form-Controls/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ <h1>T-shirt Order Form</h1>
1616
<form>
1717
<Fieldset>
1818
<div>
19-
<label for="name">Customer Name</label>
20-
<input
19+
<label for="name">Customer Name</label>
20+
<input
2121
type="text"
2222
id="name"
2323
name="name"
@@ -26,33 +26,33 @@ <h1>T-shirt Order Form</h1>
2626
required/>
2727
</div>
2828
<div>
29-
<label for="email">Customer E-mail</label>
30-
<input
29+
<label for="email">Customer E-mail</label>
30+
<input
3131
type="email"
3232
id="email"
3333
name="email"
3434
required/>
3535
</div>
3636
<div>
37-
<label for="colour">Choose a Colour</label>
38-
<select id="colour" name="colour" required>
37+
<label for="colour">Choose a Colour</label>
38+
<select id="colour" name="colour" required>
3939
<option value="">-- Select a colour --</option>
4040
<option value="black">Black</option>
4141
<option value="white">White</option>
4242
<option value="red">Red</option>
43-
</select>
43+
</select>
4444
</div>
4545
<div>
46-
<label for="size">Select a Size</label>
47-
<select id="size" name="size" required>
46+
<label for="size">Select a Size</label>
47+
<select id="size" name="size" required>
4848
<option value="">-- Select a size --</option>
4949
<option value="XS">XS</option>
5050
<option value="S">S</option>
5151
<option value="M">M</option>
5252
<option value="L">L</option>
5353
<option value="XL">XL</option>
5454
<option value="XXL">XXL</option>
55-
</select>
55+
</select>
5656
</div>
5757
<button type="submit">Submit Order</button>
5858
</Fieldset>

0 commit comments

Comments
 (0)