Create a small webpage using only HTML (no CSS or JavaScript…
Create a small webpage using only HTML (no CSS or JavaScript). The page should simulate a simple registration form for a fictional event (for example, “Intergalactic Coffee Tasting 2025”). Your webpage must meet the following requirements: 1. The page must include a meaningful title and a main heading () describing the form. 2. The form must contain the following fields: Widget for the user to input their Full Name Widget for them to input their email address Widget for them to input their password (must not show on the screen while typed) Widget to select a date of attendance Widget to select, with radio buttons, their preferred roast (choices are: Light, Medium, Dark) Widget to select their favorite brew method (choices are: Espresso, French Press, Drip, Cold Brew) Widget to opt in to received updates about future events as a checkbox Widget to enter any question they may have 3. The form must include HTML-based validation for the following fields: The field used for the full name must not be left empty by the user The field used for the email must not be left empty either but must also only accept well-formed email as input The field used for the password must not be left empty either and must required at least 6 characters 4. Include both a Submit button and a Reset button at the bottom of the form. The Reset button should clear all user-entered data from the form when clicked. You can code a Reset button the same way you write a submit button (using the input tag) but by replacing the value for the type attribute with “reset”. 5. Each input must be properly labeled for accessibility using the element. Each such element must be properly connected to the input widget that it is related to. 6. Group related widgets together using fieldsets elements, as illustrated in the page’s screenshot. Here is a screenshot of how the page should look, make sure that the HTML validation displays appropriate error messages if you provide the wrong information (as explained in list item #3 above). The form will refer to “#” as its action attribute (that means we do not submit the form anywhere when the user clicks the submit button) and use the POST method.