Skip to content

Commit 3ee1bfc

Browse files
Added comments to my HTML
1 parent 61edb68 commit 3ee1bfc

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

‎Form-Controls/index.html‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,19 @@ <h1>Product Pick</h1>
1818
try writing out the requirements first as comments
1919
this will also help you fill in your PR message later-->
2020

21-
<!-- TODO1: Collect customer name -->
21+
<!-- TODO1: Customer name -->
2222
<div>
2323
<label for="name">Full Name:</label>
2424
<input type="text" name="name" id="name" placeholder="Enter Your Name" required pattern=".*\S.*\S.*">
2525
</div>
2626

27+
<!-- TODO2: Customer email -->
2728
<div>
2829
<label for="email">Enter Your Email:</label>
2930
<input type="email" id="email" name="email" placeholder="Email" required>
3031
</div>
3132

33+
<!-- TODO3: Colors to choose from -->
3234
<div>
3335
<label for="color">Color</label>
3436
<select name="color" id="color" required>
@@ -39,6 +41,7 @@ <h1>Product Pick</h1>
3941
</select>
4042
</div>
4143

44+
<!-- TODO4: Sizes to choose from -->
4245
<div>
4346
<label for="size">Choose a Size</label>
4447
<select name="size" id="size" required>

0 commit comments

Comments
 (0)