Feedback
Calistus Abara
I will suggest to render the form using HTML source code then a afterward download and install a ready-made form mail script to process it. Creating forms starts with the form element which acts as a container for the other special elements that are used to render various form components. The form element has a start tag form and an end tag form and has two important attributes, action and method.
The two HTML elements i used to create text boxes which are input and textarea. The input element will create a single-line text box when the type="text" attribute value pair is used. A multi-line text box is created by textarea that requires both a start tag textarea and an end tag textarea at both the rows and cols attributes. creating a submit button that the user can click on to activate our simple feedback form after entering users information. I will use the input element but this time i will insert the type="submit" attribute-value pair. After all, the form asks the visitor for his email address (the field named "email" found in input name="email" above) and message (the field named "message" found in textarea name="message") and presents the user with a button which he can click to submit the contents of the form .