Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ITP, JAN25, LONDON | YORSALEM MESMER |Model Onboarding Form_Control | WEEK 2 #235

Closed
Closed
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
43 changes: 36 additions & 7 deletions Form-Controls/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<!DOCTYPE html>
<html lang="en">
<head>
Expand All @@ -9,19 +10,47 @@
</head>
<body>
<header>
<h1>Product Pick</h1>
<h1>Order Your T-Shirt</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-->
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required minlength="2">
<br></br>

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

<fieldset>
<legend>Choose a Colour</legend>
<input type="radio" id="red" name="colour" value="red" required>
<label for="red">Red</label>

<input type="radio" id="blue" name="colour" value="Blue" required>
<label for="blue">Blue</label>

<input type="radio" id="black" name="colour" value="Black" required>
<label for="black">Black</label>
</fieldset>
<br></br>

<label for="size">Select A Size</label>
<select id="size" name="size" required>
<option value=""disabled selected>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="LX">LX</option>
</select>
<br></br>

<button type="submit">Submit</button>
</form>
</main>
<footer>
<!-- change to your name-->
<h2>By HOMEWORK SOLUTION</h2>
<h2>By Yorsalem Mesmer</h2>
</footer>
</body>
</html>