Skip to content

Commit 9e9400f

Browse files
committed
eview issues fixed
1 parent ff7b9d0 commit 9e9400f

1 file changed

Lines changed: 40 additions & 8 deletions

File tree

Form-Controls/index.html

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,48 @@
1212
<h1>Product Pick</h1>
1313
</header>
1414
<main>
15-
<form>
16-
<!-- write your html here-->
17-
<!--
18-
try writing out the requirements first as comments
19-
this will also help you fill in your PR message later-->
20-
</form>
15+
<form>
16+
17+
<label for="name">Name:</label>
18+
<input type="text" id="name" name="name"><br>
19+
<label for="email">Email:</label>
20+
<input type="email" id="email" name="email"><br><br>
21+
22+
<fieldset>
23+
<legend>colour:</legend>
24+
25+
<label>
26+
<input type="radio" id="colour-red" name="colour" value="red">
27+
Red
28+
</label>
29+
30+
<label >
31+
<input type="radio" id="colour-blue" name="colour" value="blue">
32+
Blue
33+
</label>
34+
35+
<label >
36+
<input type="radio" id="colour-green" name="colour" value="green">
37+
Green
38+
</label>
39+
40+
</fieldset>
41+
42+
<label for="size">choose your size</label>
43+
44+
45+
<select id="size">
46+
<option value="s">small</option>
47+
<option value="m">medium</option>
48+
<option value="l">large</option>
49+
<option value="xl">xlarge</option>
50+
<option value="xl">xxlarge</option>
51+
52+
</select>
53+
</form>
2154
</main>
2255
<footer>
23-
<!-- change to your name-->
24-
<p>By HOMEWORK SOLUTION</p>
56+
<p>Anita Amirhaeri</p>
2557
</footer>
2658
</body>
2759
</html>

0 commit comments

Comments
 (0)