Skip to content

Commit 9b1da51

Browse files
committed
Add intitial form layout with name and email inputs
1 parent a575a36 commit 9b1da51

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

Form-Controls/index.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +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+
<!-- REQUIREMENTS -->
17+
<!-- what is the custome's name? (min 2 characters) -->
18+
<div>
19+
<label for="name">Full Name:</label>
20+
<input type="text" id="name" name="name" />
21+
</div>
22+
23+
<dv>
24+
<label for="email">Email Address:</label>
25+
<input type="email" id="email" name="email" />
26+
</dv>
27+
28+
2029
</form>
2130
</main>
2231
<footer>

0 commit comments

Comments
 (0)