-
-
Notifications
You must be signed in to change notification settings - Fork 516
London | 2-ITP-Sept | Hugh Mills| Sprint 1 | Form Controls #1473
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
base: main
Are you sure you want to change the base?
Changes from all commits
1a80e0b
b14a6c9
2e39c78
2c1de1d
06eac62
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,6 +13,43 @@ <h1>Product Pick</h1> | |
| </header> | ||
| <main> | ||
| <form> | ||
| <div> | ||
| <label for="name">Name:</label> | ||
| <input type="text" id="name" placeholder="Hugh Mills" pattern=".*\S.*\S.*." required> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The validation does not allow special characters like the German ä,ü,ö or Russian ед |
||
| </div> | ||
| <div> | ||
| <label for="email">Email:</label> | ||
| <input type="email" id="email" placeholder="hugh.mills@myemail.com" required> | ||
| </div> | ||
| <div> | ||
| Colour- Please Select one:<br> | ||
| <label for="white">White</label> | ||
| <input type="radio" name="colour" value="white" required> | ||
| <label for="black">Black</label> | ||
| <input type="radio" name="colour" value="black"> | ||
| <label for="blue">Blue</label> | ||
| <input type="radio" name="colour" value="white"> | ||
| </div> | ||
| <div> | ||
| Size - Please select one:<br> | ||
| <label for="size">XS:</label> | ||
| <input type="radio" name="size" value="xs" required> | ||
| <label for="size">S:</label> | ||
| <input type="radio" name="size" value="s"> | ||
| <label for="size">M:</label> | ||
| <input type="radio" name="size" value="m"><br> | ||
| <label for="size">L:</label> | ||
| <input type="radio" name="size" value="l"> | ||
| <label for="size">XL:</label> | ||
| <input type="radio" name="size" value="xl"> | ||
| <label for="size">XXL:</label> | ||
| <input type="radio" name="size" value="xxl"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FYI: I would change the form types. Radio buttons are good if there are not to many options to choose from. Space on a web page is precious and for inputs with a lot of options, a dropdown can save a lot of space. (You don't need to change anything. This is just an information on the different input types) |
||
| </div> | ||
| <div> | ||
| <input type="submit"> | ||
| <input type="reset"> | ||
| </div> | ||
|
|
||
| <!-- write your html here--> | ||
| <!-- | ||
| try writing out the requirements first as comments | ||
|
|
@@ -21,7 +58,7 @@ <h1>Product Pick</h1> | |
| </main> | ||
| <footer> | ||
| <!-- change to your name--> | ||
| <p>By HOMEWORK SOLUTION</p> | ||
| <p>By Hugh Mills</p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The lighthouse Accessibility score is below 100. How can you achieve 100?