0% found this document useful (0 votes)
6 views

Form

The document is an HTML form designed to collect student information, including first name, surname, residential address, standard, gender, and hobbies. It includes input fields for text, radio buttons for standard and gender selection, and checkboxes for hobbies. The form is structured to facilitate easy data entry for students.

Uploaded by

aasiya.manapure
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Form

The document is an HTML form designed to collect student information, including first name, surname, residential address, standard, gender, and hobbies. It includes input fields for text, radio buttons for standard and gender selection, and checkboxes for hobbies. The form is structured to facilitate easy data entry for students.

Uploaded by

aasiya.manapure
Copyright
© © All Rights Reserved
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html>

<body>
<h2>Student Information</h2><br>

Enter your first name :<input type=“text”><br>


Enter your surname:<input type=“text”><br>
Enter your residential address <br>
<textarea rows =6 cols =50>

</textarea>
<br>
Select your standard :<br>
<input type=“radio” name=“STD” value=“VI” checked> VI<br>
<input type=“radio” name=“STD” value=“VII” checked> VII<br>
<input type =“radio” name=“STD” value=“VIII” checked> VIII<br>
<br>
Gender : <input type=“radio” name=“gender” value=“Male”>Male
<input type=“radio” name=“gender” value=“Female”>Female

Select your hobbies :


<input type=“checkbox”> Painting
<input type=“checkbox”> Dancing
<input type=“checkbox”> Reading
<input type=“checkbox”> Singing
<input type=“checkbox”> Playing
<input type=“checkbox”> Cooking

</form>
</body>
</html>

You might also like