Lab 06 HTML Form
Lab #6: HTML HTML Forms QUESTIONS 1. Explain about the HTML code above. The HTML code above have the elements which is mainly use to make a form in html. I am going to explain these elements one by one. Elements Explanation <form action="/action_page.php"> - This is the element which is a container for different types of input elements, such as text files, checkboxes, radio buttons, submit buttons. <label for="fname"> - This element defines a label for several elements such as <input type = “text”> <input type="text" id="fname" name="fname" value=""> - This element will display a single line text input field for users to input their data. <input type="submit" value="Submit"> - ...