You are on page 1of 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