Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,23 @@
<h1>Product Pick</h1>
</header>
<main>
<form>
<!-- write your html here-->
<!--
try writing out the requirements first as comments
this will also help you fill in your PR message later-->
<form> <label for="name"> Name: </label>
<input type="text" id="name" name="name" />
<br />
<label for="email"> Email: </label>
<input type="email" id="email" name="email" />
<!-- Dropdown for colour -->
<br />
<label for="colour"> Colour: </label>
<select id="colour" name="colour">
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
</select>
</form>
</main>
<footer>
<!-- change to your name-->
<!-- Yesirat Adeboye-->
<h2>By HOMEWORK SOLUTION</h2>
</footer>
</body>
Expand Down