Skip to content

Commit 42710d3

Browse files
basic form
1 parent ff7b9d0 commit 42710d3

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

Form-Controls/index.html

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,19 @@ <h1>Product Pick</h1>
1313
</header>
1414
<main>
1515
<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-->
16+
<div>
17+
<label for="name">Name:</label>
18+
<input id="name" type="text" />
19+
</div>
20+
<label for="email">Email:</label>
21+
<input id="email" type="email" />
22+
23+
</div>
24+
<button>Submit</button>
2025
</form>
2126
</main>
2227
<footer>
23-
<!-- change to your name-->
24-
<p>By HOMEWORK SOLUTION</p>
28+
<p>By Alexandra Clincu</p>
2529
</footer>
2630
</body>
2731
</html>

0 commit comments

Comments
 (0)