Wednesday 9 August 2023

Web Development 12

 

LECTURE # 11

7/8/2023
Question #1:  What is form tag in html?

Answer:  form tag element is used to create an HTML form for user input. Input element is the most used form element.An input element can be displayed in many ways, depending on the type attribute.For example 
<form>
<input type="text"> Displays a single-line text input field
<input type="radio"> Displays a radio button (for selecting one of many choices)
<input type="checkbox">Displays a checkbox (for selecting zero or more of many choices)
<input type="submit"> Displays a submit button (for submitting the form)
<input type="button"> Displays a clickable button
</form>
their are further more attribtues of input tag which is essential part of form tage