Thanks to visit codestin.com
Credit goes to www.scribd.com

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

Form

The document is an HTML form that collects user information including name, address, password, gender, favorite subjects, and a file upload. It features input fields for text, password, radio buttons for gender selection, checkboxes for subjects, and buttons for submission and reset. The form is designed to send data to 'form.html' using the GET method.

Uploaded by

Bhuwan Ghimire
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
43 views1 page

Form

The document is an HTML form that collects user information including name, address, password, gender, favorite subjects, and a file upload. It features input fields for text, password, radio buttons for gender selection, checkboxes for subjects, and buttons for submission and reset. The form is designed to send data to 'form.html' using the GET method.

Uploaded by

Bhuwan Ghimire
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html>

<head>
<title>Sample page </title>
</head>
<Body>
<Form action="form.html" method="get">
Name: <Input type="text" name="name" value="Enter Your Name" > <BR>
Address: <Input type="text" name="add" value="Your Address Here" > <BR>
Password: <Input type="password" name="password" value="Your Password" ><BR>
Gender: <Input type="radio" name="r1" checked=truevalue="Male">Male<BR>
<Input type="radio" name="r1" value="Female">Female<BR>
<Input type="radio" name="r1" value="Other">Other<BR>
Favourite Subject: <Input type="checkbox" checked=true name="c1">Physics<BR>
<Input type="checkbox" checked=true name="c2">Maths<BR>
<Input type="checkbox" checked=true name="c3">Chemistry<BR>
<Input type="checkbox" name="c1">Computer<BR>
Select file: <Input type="file" Size=50 maxlength=40><BR>
Submit: <Input type=submit value="send"><BR>
Reset: <Input type=reset value="clear"><BR>
</Form>
</Body>
</Html>

You might also like