Skip to content

Commit d43171d

Browse files
committed
Added name, email and size option
1 parent ff7b9d0 commit d43171d

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Form-Controls/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ <h1>Product Pick</h1>
1414
<main>
1515
<form>
1616
<!-- write your html here-->
17+
<p>
18+
<label for="name"> Name:</label>
19+
<input type="text" id="name" name="user_name" required/>
20+
</p>
21+
<p>
22+
<label for="mail">Email: </label>
23+
<input type="email" id="mail" name="user_name" required/>
24+
</p>
25+
<p>
26+
<label for="size">
27+
<span> Choose your size:</span>
28+
</label>
29+
<select id="size" name="user-size">
30+
<option value="xs">XS</option>
31+
<option value="small">S</option>
32+
<option value="mid">M</option>
33+
<option value="large">L</option>
34+
<option value="xl">XL</option>
35+
<option value="xxl">XXL</option>
36+
37+
</select>
38+
</p>
39+
1740
<!--
1841
try writing out the requirements first as comments
1942
this will also help you fill in your PR message later-->

0 commit comments

Comments
 (0)