Build an app that is functionally similar to Survey Form
- You can check this instructions on Responsive Web Design certifications, Buiild Survey Form
- You should have a page title in an h1 element with an
idoftitle - You should have a short explanation in a p element with an
idofdescription - You should have a form element with an
idofsurvey-form - Inside the form element, you are required to enter your name in an input field that has an
idofnameand atypeoftext - Inside the form element, you are required to enter your email in an
inputfield that has anidofemail - If you enter an email that is not formatted correctly, you will see an HTML5 validation error
- Inside the form, you can enter a number in an input field that has an
idofnumber - If you enter non-numbers in the number input, you will see an HTML5 validation error
- If you enter numbers outside the range of the number input, which are defined by the
minandmaxattributes, you will see an HTML5 validation error - For the name, email, and number input fields, you can see corresponding label elements in the form, that describe the purpose of each field with the following ids:
id="name-label",id="email-label", andid="number-label" - For the name, email, and number input fields, you can see
placeholdertext that gives a description or instructions for each field - Inside the form element, you should have a
selectdropdown element with anidofdropdownand at least two options to choose from - Inside the form element, you can select an option from a group of at least two radio buttons that are grouped using the
nameattribute - Inside the form element, you can select several fields from a series of checkboxes, each of which must have a
valueattribute - Inside the form element, you are presented with a
textareafor additional comments - Inside the form element, you are presented with a button with
idofsubmitto submit all the inputs
- I design a simple survey form before jumping into the coding, here is my design :

