0% found this document useful (0 votes)
34 views1 page

Form

The document contains several HTML forms collecting different types of user input data including: text inputs for name, password, username; radio buttons for gender; checkboxes for vehicles owned; a submit button; a select dropdown for cars; and a textarea for a message.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Form

The document contains several HTML forms collecting different types of user input data including: text inputs for name, password, username; radio buttons for gender; checkboxes for vehicles owned; a submit button; a select dropdown for cars; and a textarea for a message.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<form> First name: <input type="text" name="firstname" /><br /> Last name: <input type="text" name="lastname" /> </form>

<form> Password: <input type="password" name="pwd" /> </form> <form> <input type="radio" name="sex" value="male" /> Male<br /> <input type="radio" name="sex" value="female" /> Female </form> <form> <input type="checkbox" name="vehicle" value="Bike" /> I have a bike<br /> <input type="checkbox" name="vehicle" value="Car" /> I have a car </form> <form name="input" action="html_form_action.asp" method="get"> Username: <input type="text" name="user" /> <input type="submit" value="Submit" /> </form> <form action=""> <select name="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="fiat">Fiat</option> <option value="audi">Audi</option> </select> </form> <textarea rows="10" cols="30"> The cat was playing in the garden. </textarea>

You might also like