Skip to content
Open
Changes from 2 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
50 changes: 41 additions & 9 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,51 @@
</head>
<body>
<header>
<h1>Product Pick</h1>
<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>
<form>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting is slightly off here - each new element should be indented

You can do this within VS code by using Format document - https://code.visualstudio.com/docs/editing/codebasics#_formatting

<!-- Name taken and validates minimum 2 characters -->

<label for="name">Name:</label>
<input type="text" id="name" name="name" required minlength="2">

<!-- Email section validates if the email is valid -->

<label for="email">Email:</label>
<input type="email" id="email" name="email" required>

<!-- Select one color -->

<fieldset>
<legend>Choose a colour:</legend>
<label><input type="radio" name="colour" value="red" required> Red</label>
<label><input type="radio" name="colour" value="blue"> Blue</label>
<label><input type="radio" name="colour" value="green"> Green</label>
</fieldset>

<!-- Size selection (allows to select only one) -->

<label for="size">Choose a size:</label>
<select id="size" name="size" required>
<option value="">--Select a size--</option>
<option value="xs">XS</option>
<option value="s">S</option>
<option value="m">M</option>
<option value="l">L</option>
<option value="xl">XL</option>
<option value="xxl">XXL</option>
</select>

<!-- Submit button -->
<button type="submit">Submit</button>
</form>

</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>

<h2>By COTTON SOLUTIONS, Ltd</h2>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be your name

</footer>
</body>

</html>
Loading